Struct rusoto_stepfunctions::StartExecutionInput [] [src]

pub struct StartExecutionInput {
    pub input: Option<String>,
    pub name: Option<String>,
    pub state_machine_arn: String,
}

Fields

The JSON input data for the execution.

The name of the execution. This name must be unique for your AWS account and region.

The Amazon Resource Name (ARN) of the state machine to execute.

Trait Implementations

impl Default for StartExecutionInput
[src]

[src]

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

impl Debug for StartExecutionInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for StartExecutionInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations