[][src]Struct rusoto_stepfunctions::ExecutionListItem

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

Contains details about an execution.

Fields

execution_arn: String

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

name: 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)

start_date: f64

The date the execution started.

state_machine_arn: String

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

status: String

The current status of the execution.

stop_date: Option<f64>

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

Trait Implementations

impl Clone for ExecutionListItem[src]

impl Debug for ExecutionListItem[src]

impl Default for ExecutionListItem[src]

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

impl PartialEq<ExecutionListItem> for ExecutionListItem[src]

impl StructuralPartialEq for ExecutionListItem[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.