Enum rusoto_application_autoscaling::RegisterScalableTargetError [] [src]

pub enum RegisterScalableTargetError {
    ConcurrentUpdate(String),
    InternalService(String),
    LimitExceeded(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by RegisterScalableTarget

Variants

Concurrent updates caused an exception, for example, if you request an update to an Application Auto Scaling resource that already has a pending update.

The service encountered an internal error.

Your account exceeded a limit. This exception is thrown when a per-account resource limit is exceeded. For more information, see Application Auto Scaling Limits.

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

Trait Implementations

impl Debug for RegisterScalableTargetError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for RegisterScalableTargetError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for RegisterScalableTargetError
[src]

[src]

Performs the conversion.

impl From<Error> for RegisterScalableTargetError
[src]

[src]

Performs the conversion.

impl Display for RegisterScalableTargetError
[src]

[src]

Formats the value using the given formatter. Read more

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