Enum rusoto_shield::CreateProtectionError [] [src]

pub enum CreateProtectionError {
    InternalError(String),
    InvalidOperation(String),
    InvalidResource(String),
    LimitsExceeded(String),
    OptimisticLock(String),
    ResourceAlreadyExists(String),
    ResourceNotFound(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateProtection

Variants

Exception that indicates that a problem occurred with the service infrastructure. You can retry the request.

Exception that indicates that the operation would not cause any change to occur.

Exception that indicates that the resource is invalid. You might not have access to the resource, or the resource might not exist.

Exception that indicates that the operation would exceed a limit.

Type is the type of limit that would be exceeded.

Limit is the threshold that would be exceeded.

Exception that indicates that the protection state has been modified by another client. You can retry the request.

Exception indicating the specified resource already exists.

Exception indicating the specified resource does not exist.

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

Trait Implementations

impl Debug for CreateProtectionError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for CreateProtectionError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateProtectionError
[src]

[src]

Performs the conversion.

impl From<Error> for CreateProtectionError
[src]

[src]

Performs the conversion.

impl Display for CreateProtectionError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for CreateProtectionError
[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