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 is created.

The Amazon States Language definition of the state machine.

The name of the state machine.

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 used when creating this state machine. (The IAM role maintains security by granting Step Functions access to AWS resources.)

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