Enum rusoto_application_autoscaling::DeregisterScalableTargetError [] [src]

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

Errors returned by DeregisterScalableTarget

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.

The specified object could not be found. For any Put or Register API operation, which depends on the existence of a scalable target, this exception is thrown if the scalable target with the specified service namespace, resource ID, and scalable dimension does not exist. For any Delete or Deregister API operation, this exception is thrown if the resource that is to be deleted or deregistered cannot be 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 DeregisterScalableTargetError
[src]

Trait Implementations

impl Debug for DeregisterScalableTargetError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for DeregisterScalableTargetError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for DeregisterScalableTargetError
[src]

[src]

Performs the conversion.

impl From<Error> for DeregisterScalableTargetError
[src]

[src]

Performs the conversion.

impl Display for DeregisterScalableTargetError
[src]

[src]

Formats the value using the given formatter. Read more

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