[][src]Struct rusoto_sagemaker::ListPipelineExecutionStepsResponse

pub struct ListPipelineExecutionStepsResponse {
    pub next_token: Option<String>,
    pub pipeline_execution_steps: Option<Vec<PipelineExecutionStep>>,
}

Fields

next_token: Option<String>

If the result of the previous ListPipelineExecutionSteps request was truncated, the response includes a NextToken. To retrieve the next set of pipeline execution steps, use the token in the next request.

pipeline_execution_steps: Option<Vec<PipelineExecutionStep>>

A list of PipeLineExecutionStep objects. Each PipeLineExecutionStep consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.

Trait Implementations

impl Clone for ListPipelineExecutionStepsResponse[src]

impl Debug for ListPipelineExecutionStepsResponse[src]

impl Default for ListPipelineExecutionStepsResponse[src]

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

impl PartialEq<ListPipelineExecutionStepsResponse> for ListPipelineExecutionStepsResponse[src]

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