Enum rusoto_appstream::CreateStackError [] [src]

pub enum CreateStackError {
    ConcurrentModification(String),
    InvalidParameterCombination(String),
    InvalidRole(String),
    LimitExceeded(String),
    ResourceAlreadyExists(String),
    ResourceNotFound(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateStack

Variants

An API error occurred. Wait a few minutes and try again.

Indicates an incorrect combination of parameters, or a missing parameter.

The specified role is invalid.

The requested limit exceeds the permitted limit for an account.

The specified resource already exists.

The specified resource was not found.

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

Trait Implementations

impl Debug for CreateStackError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for CreateStackError
[src]

[src]

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

[src]

This method tests for !=.

impl From<Error> for CreateStackError
[src]

[src]

Performs the conversion.

impl From<CredentialsError> for CreateStackError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateStackError
[src]

[src]

Performs the conversion.

impl From<Error> for CreateStackError
[src]

[src]

Performs the conversion.

impl Display for CreateStackError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for CreateStackError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

Auto Trait Implementations