[][src]Struct rusoto_sagemaker::StartPipelineExecutionRequest

pub struct StartPipelineExecutionRequest {
    pub client_request_token: String,
    pub pipeline_execution_description: Option<String>,
    pub pipeline_execution_display_name: Option<String>,
    pub pipeline_name: String,
    pub pipeline_parameters: Option<Vec<Parameter>>,
}

Fields

client_request_token: String

A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time.

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_name: String

The name of the pipeline.

pipeline_parameters: Option<Vec<Parameter>>

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

Trait Implementations

impl Clone for StartPipelineExecutionRequest[src]

impl Debug for StartPipelineExecutionRequest[src]

impl Default for StartPipelineExecutionRequest[src]

impl PartialEq<StartPipelineExecutionRequest> for StartPipelineExecutionRequest[src]

impl Serialize for StartPipelineExecutionRequest[src]

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