[][src]Struct rusoto_stepfunctions::DescribeStateMachineOutput

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 Clone for DescribeStateMachineOutput
[src]

Performs copy-assignment from source. Read more

impl Default for DescribeStateMachineOutput
[src]

impl PartialEq<DescribeStateMachineOutput> for DescribeStateMachineOutput
[src]

impl Debug for DescribeStateMachineOutput
[src]

impl<'de> Deserialize<'de> for DescribeStateMachineOutput
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T