[][src]Enum rusoto_codepipeline::StopPipelineExecutionError

pub enum StopPipelineExecutionError {
    Conflict(String),
    DuplicatedStopRequest(String),
    PipelineExecutionNotStoppable(String),
    PipelineNotFound(String),
}

Errors returned by StopPipelineExecution

Variants

Conflict(String)

Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.

DuplicatedStopRequest(String)

The pipeline execution is already in a Stopping state. If you already chose to stop and wait, you cannot make that request again. You can choose to stop and abandon now, but be aware that this option can lead to failed tasks or out of sequence tasks. If you already chose to stop and abandon, you cannot make that request again.

PipelineExecutionNotStoppable(String)

Unable to stop the pipeline execution. The execution might already be in a Stopped state, or it might no longer be in progress.

PipelineNotFound(String)

The pipeline was specified in an invalid format or cannot be found.

Implementations

impl StopPipelineExecutionError[src]

Trait Implementations

impl Debug for StopPipelineExecutionError[src]

impl Display for StopPipelineExecutionError[src]

impl Error for StopPipelineExecutionError[src]

impl PartialEq<StopPipelineExecutionError> for StopPipelineExecutionError[src]

impl StructuralPartialEq for StopPipelineExecutionError[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> ToString for T where
    T: Display + ?Sized
[src]

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.