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.

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

Trait Implementations

impl Default for CreateStateMachineInput
[src]

[src]

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

impl Debug for CreateStateMachineInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateStateMachineInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations