Enum rusoto_codedeploy::SkipWaitTimeForInstanceTerminationError[][src]

pub enum SkipWaitTimeForInstanceTerminationError {
    DeploymentAlreadyCompleted(String),
    DeploymentDoesNotExist(String),
    DeploymentIdRequired(String),
    DeploymentNotStarted(String),
    InvalidDeploymentId(String),
    UnsupportedActionForDeploymentType(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by SkipWaitTimeForInstanceTermination

Variants

The deployment is already complete.

The deployment does not exist with the applicable IAM user or AWS account.

At least one deployment ID must be specified.

The specified deployment has not started.

At least one of the deployment IDs was specified in an invalid format.

A call was submitted that is not supported for the specified deployment type.

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

Trait Implementations

impl Debug for SkipWaitTimeForInstanceTerminationError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for SkipWaitTimeForInstanceTerminationError
[src]

Performs the conversion.

impl From<HttpDispatchError> for SkipWaitTimeForInstanceTerminationError
[src]

impl From<Error> for SkipWaitTimeForInstanceTerminationError
[src]

Performs the conversion.

impl Display for SkipWaitTimeForInstanceTerminationError
[src]

Formats the value using the given formatter. Read more

impl Error for SkipWaitTimeForInstanceTerminationError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations