[][src]Struct rusoto_stepfunctions::StartSyncExecutionOutput

pub struct StartSyncExecutionOutput {
    pub billing_details: Option<BillingDetails>,
    pub cause: Option<String>,
    pub error: Option<String>,
    pub execution_arn: String,
    pub input: Option<String>,
    pub input_details: Option<CloudWatchEventsExecutionDataDetails>,
    pub name: Option<String>,
    pub output: Option<String>,
    pub output_details: Option<CloudWatchEventsExecutionDataDetails>,
    pub start_date: f64,
    pub state_machine_arn: Option<String>,
    pub status: String,
    pub stop_date: f64,
    pub trace_header: Option<String>,
}

Fields

billing_details: Option<BillingDetails>

An object that describes workflow billing details, including billed duration and memory use.

cause: Option<String>

A more detailed explanation of the cause of the failure.

error: Option<String>

The error code of the failure.

execution_arn: String

The Amazon Resource Name (ARN) that identifies the execution.

input: Option<String>

The string that contains the JSON input data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

input_details: Option<CloudWatchEventsExecutionDataDetails>name: Option<String>

The name of the execution.

output: Option<String>

The JSON output data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

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

output_details: Option<CloudWatchEventsExecutionDataDetails>start_date: f64

The date the execution is started.

state_machine_arn: Option<String>

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

status: String

The current status of the execution.

stop_date: f64

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

trace_header: Option<String>

The AWS X-Ray trace header that was passed to the execution.

Trait Implementations

impl Clone for StartSyncExecutionOutput[src]

impl Debug for StartSyncExecutionOutput[src]

impl Default for StartSyncExecutionOutput[src]

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

impl PartialEq<StartSyncExecutionOutput> for StartSyncExecutionOutput[src]

impl StructuralPartialEq for StartSyncExecutionOutput[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, 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.