[][src]Struct rusoto_stepfunctions::DescribeExecutionOutput

pub struct DescribeExecutionOutput {
    pub execution_arn: String,
    pub input: String,
    pub name: Option<String>,
    pub output: Option<String>,
    pub start_date: f64,
    pub state_machine_arn: String,
    pub status: String,
    pub stop_date: Option<f64>,
}

Fields

execution_arn: String

The Amazon Resource Name (ARN) that id entifies the execution.

input: String

The string that contains the JSON input data of the execution.

name: Option<String>

The name of the execution.

A name must not contain:

  • white space

  • brackets < > { } [ ]

  • wildcard characters ? *

  • special characters " # % \ ^ | ~ ` $ & , ; : /

  • control characters (U+0000-001F, U+007F-009F)

To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.

output: Option<String>

The JSON output data of the execution.

This field is set only if the execution succeeds. If the execution fails, this field is null.

start_date: f64

The date the execution is started.

state_machine_arn: String

The Amazon Resource Name (ARN) of the executed stated machine.

status: String

The current status of the execution.

stop_date: Option<f64>

If the execution has already ended, the date the execution stopped.

Trait Implementations

impl Clone for DescribeExecutionOutput[src]

impl Debug for DescribeExecutionOutput[src]

impl Default for DescribeExecutionOutput[src]

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

impl PartialEq<DescribeExecutionOutput> for DescribeExecutionOutput[src]

impl StructuralPartialEq for DescribeExecutionOutput[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.