[][src]Struct rusoto_sagemaker::FlowDefinitionSummary

pub struct FlowDefinitionSummary {
    pub creation_time: f64,
    pub failure_reason: Option<String>,
    pub flow_definition_arn: String,
    pub flow_definition_name: String,
    pub flow_definition_status: String,
}

Contains summary information about the flow definition.

Fields

creation_time: f64

The timestamp when SageMaker created the flow definition.

failure_reason: Option<String>

The reason why the flow definition creation failed. A failure reason is returned only when the flow definition status is Failed.

flow_definition_arn: String

The Amazon Resource Name (ARN) of the flow definition.

flow_definition_name: String

The name of the flow definition.

flow_definition_status: String

The status of the flow definition. Valid values:

Trait Implementations

impl Clone for FlowDefinitionSummary[src]

impl Debug for FlowDefinitionSummary[src]

impl Default for FlowDefinitionSummary[src]

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

impl PartialEq<FlowDefinitionSummary> for FlowDefinitionSummary[src]

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