[][src]Struct rusoto_sagemaker::PipelineExecution

pub struct PipelineExecution {
    pub created_by: Option<UserContext>,
    pub creation_time: Option<f64>,
    pub last_modified_by: Option<UserContext>,
    pub last_modified_time: Option<f64>,
    pub pipeline_arn: Option<String>,
    pub pipeline_execution_arn: Option<String>,
    pub pipeline_execution_description: Option<String>,
    pub pipeline_execution_display_name: Option<String>,
    pub pipeline_execution_status: Option<String>,
    pub pipeline_parameters: Option<Vec<Parameter>>,
}

An execution of a pipeline.

Fields

created_by: Option<UserContext>creation_time: Option<f64>

The creation time of the pipeline execution.

last_modified_by: Option<UserContext>last_modified_time: Option<f64>

The time that the pipeline execution was last modified.

pipeline_arn: Option<String>

The Amazon Resource Name (ARN) of the pipeline that was executed.

pipeline_execution_arn: Option<String>

The Amazon Resource Name (ARN) of the pipeline execution.

pipeline_execution_description: Option<String>

The description of the pipeline execution.

pipeline_execution_display_name: Option<String>

The display name of the pipeline execution.

pipeline_execution_status: Option<String>

The status of the pipeline status.

pipeline_parameters: Option<Vec<Parameter>>

Contains a list of pipeline parameters. This list can be empty.

Trait Implementations

impl Clone for PipelineExecution[src]

impl Debug for PipelineExecution[src]

impl Default for PipelineExecution[src]

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

impl PartialEq<PipelineExecution> for PipelineExecution[src]

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