[][src]Struct rusoto_codepipeline::StopPipelineExecutionInput

pub struct StopPipelineExecutionInput {
    pub abandon: Option<bool>,
    pub pipeline_execution_id: String,
    pub pipeline_name: String,
    pub reason: Option<String>,
}

Fields

abandon: Option<bool>

Use this option to stop the pipeline execution by abandoning, rather than finishing, in-progress actions.

This option can lead to failed or out-of-sequence tasks.

pipeline_execution_id: String

The ID of the pipeline execution to be stopped in the current stage. Use the GetPipelineState action to retrieve the current pipelineExecutionId.

pipeline_name: String

The name of the pipeline to stop.

reason: Option<String>

Use this option to enter comments, such as the reason the pipeline was stopped.

Trait Implementations

impl Clone for StopPipelineExecutionInput[src]

impl Debug for StopPipelineExecutionInput[src]

impl Default for StopPipelineExecutionInput[src]

impl PartialEq<StopPipelineExecutionInput> for StopPipelineExecutionInput[src]

impl Serialize for StopPipelineExecutionInput[src]

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