Enum rusoto_route53::CreateTrafficPolicyError[][src]

pub enum CreateTrafficPolicyError {
    InvalidInput(String),
    InvalidTrafficPolicyDocument(String),
    TooManyTrafficPolicies(String),
    TrafficPolicyAlreadyExists(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateTrafficPolicy

Variants

The input is not valid.

The format of the traffic policy document that you specified in the Document element is invalid.

This traffic policy can't be created because the current account has reached the limit on the number of traffic policies.

For information about default limits, see Limits in the Amazon Route 53 Developer Guide.

To get the current limit for an account, see GetAccountLimit.

To request a higher limit, create a case with the AWS Support Center.

A traffic policy that has the same value for Name already exists.

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

Trait Implementations

impl Debug for CreateTrafficPolicyError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for CreateTrafficPolicyError
[src]

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

This method tests for !=.

impl From<XmlParseError> for CreateTrafficPolicyError
[src]

Performs the conversion.

impl From<CredentialsError> for CreateTrafficPolicyError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateTrafficPolicyError
[src]

Performs the conversion.

impl From<Error> for CreateTrafficPolicyError
[src]

Performs the conversion.

impl Display for CreateTrafficPolicyError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateTrafficPolicyError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations