Enum rusoto_application_autoscaling::DescribeScalingPoliciesError [] [src]

pub enum DescribeScalingPoliciesError {
    ConcurrentUpdate(String),
    FailedResourceAccess(String),
    InternalService(String),
    InvalidNextToken(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by DescribeScalingPolicies

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.

Failed access to resources caused an exception. This exception is thrown when Application Auto Scaling is unable to retrieve the alarms associated with a scaling policy due to a client error, for example, if the role ARN specified for a scalable target does not have permission to call the CloudWatch DescribeAlarms API operation on behalf of your account.

The service encountered an internal error.

The next token supplied was invalid.

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

Trait Implementations

impl Debug for DescribeScalingPoliciesError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for DescribeScalingPoliciesError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for DescribeScalingPoliciesError
[src]

[src]

Performs the conversion.

impl From<Error> for DescribeScalingPoliciesError
[src]

[src]

Performs the conversion.

impl Display for DescribeScalingPoliciesError
[src]

[src]

Formats the value using the given formatter. Read more

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