Struct rusoto_stepfunctions::DescribeStateMachineOutput [] [src]

pub struct DescribeStateMachineOutput {
    pub creation_date: f64,
    pub definition: String,
    pub name: String,
    pub role_arn: String,
    pub state_machine_arn: String,
    pub status: Option<String>,
}

Fields

The date the state machine was created.

The Amazon States Language definition of the state machine.

The name of the state machine.

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

The Amazon Resource Name (ARN) that identifies the state machine.

The current status of the state machine.

Trait Implementations

impl Default for DescribeStateMachineOutput
[src]

[src]

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

impl Debug for DescribeStateMachineOutput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeStateMachineOutput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations