Enum rusoto_codepipeline::CreatePipelineError[][src]

pub enum CreatePipelineError {
    InvalidActionDeclaration(String),
    InvalidBlockerDeclaration(String),
    InvalidStageDeclaration(String),
    InvalidStructure(String),
    LimitExceeded(String),
    PipelineNameInUse(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreatePipeline

Variants

The specified action declaration was specified in an invalid format.

Reserved for future use.

The specified stage declaration was specified in an invalid format.

The specified structure was specified in an invalid format.

The number of pipelines associated with the AWS account has exceeded the limit allowed for the account.

The specified pipeline name is already in use.

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 CreatePipelineError
[src]

Trait Implementations

impl Debug for CreatePipelineError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for CreatePipelineError
[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 CreatePipelineError
[src]

Performs the conversion.

impl From<CredentialsError> for CreatePipelineError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreatePipelineError
[src]

Performs the conversion.

impl From<Error> for CreatePipelineError
[src]

Performs the conversion.

impl Display for CreatePipelineError
[src]

Formats the value using the given formatter. Read more

impl Error for CreatePipelineError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations