Enum rusoto_codepipeline::RetryStageExecutionError[][src]

pub enum RetryStageExecutionError {
    NotLatestPipelineExecution(String),
    PipelineNotFound(String),
    StageNotFound(String),
    StageNotRetryable(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by RetryStageExecution

Variants

The stage has failed in a later run of the pipeline and the pipelineExecutionId associated with the request is out of date.

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

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

The specified stage can't be retried because the pipeline structure or stage state changed after the stage was not completed; the stage contains no failed actions; one or more actions are still in progress; or another retry attempt is already in progress.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl RetryStageExecutionError
[src]

Trait Implementations

impl Debug for RetryStageExecutionError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for RetryStageExecutionError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<Error> for RetryStageExecutionError
[src]

Performs the conversion.

impl From<CredentialsError> for RetryStageExecutionError
[src]

Performs the conversion.

impl From<HttpDispatchError> for RetryStageExecutionError
[src]

Performs the conversion.

impl From<Error> for RetryStageExecutionError
[src]

Performs the conversion.

impl Display for RetryStageExecutionError
[src]

Formats the value using the given formatter. Read more

impl Error for RetryStageExecutionError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations