Struct rusoto_stepfunctions::CreateStateMachineInput[][src]

pub struct CreateStateMachineInput {
    pub definition: String,
    pub name: String,
    pub role_arn: String,
}

Fields

The Amazon States Language definition of the state machine.

The name of the state machine. This name must be unique for your AWS account and region for 90 days. For more information, see Limits Related to State Machine Executions in the AWS Step Functions Developer Guide.

A name must not contain:

  • whitespace

  • brackets < > { } [ ]

  • wildcard characters ? *

  • special characters " # % \ ^ | ~ ` $ & , ; : /

  • control characters (U+0000-001F, U+007F-009F)

The Amazon Resource Name (ARN) of the IAM role to use for this state machine.

Trait Implementations

impl Default for CreateStateMachineInput
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateStateMachineInput
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateStateMachineInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateStateMachineInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations