Enum rusoto_route53::CreateReusableDelegationSetError[][src]

pub enum CreateReusableDelegationSetError {
    DelegationSetAlreadyCreated(String),
    DelegationSetAlreadyReusable(String),
    DelegationSetNotAvailable(String),
    HostedZoneNotFound(String),
    InvalidArgument(String),
    InvalidInput(String),
    LimitsExceeded(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateReusableDelegationSet

Variants

A delegation set with the same owner and caller reference combination has already been created.

The specified delegation set has already been marked as reusable.

You can create a hosted zone that has the same name as an existing hosted zone (example.com is common), but there is a limit to the number of hosted zones that have the same name. If you get this error, Amazon Route 53 has reached that limit. If you own the domain name and Amazon Route 53 generates this error, contact Customer Support.

The specified HostedZone can't be found.

Parameter name is invalid.

The input is not valid.

This operation can't be completed either because the current account has reached the limit on reusable delegation sets that it can create or because you've reached the limit on the number of Amazon VPCs that you can associate with a private hosted zone. To get the current limit on the number of reusable delegation sets, see GetAccountLimit. To get the current limit on the number of Amazon VPCs that you can associate with a private hosted zone, see GetHostedZoneLimit. To request a higher limit, create a case with the AWS Support Center.

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

Trait Implementations

impl Debug for CreateReusableDelegationSetError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for CreateReusableDelegationSetError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateReusableDelegationSetError
[src]

Performs the conversion.

impl From<Error> for CreateReusableDelegationSetError
[src]

Performs the conversion.

impl Display for CreateReusableDelegationSetError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateReusableDelegationSetError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations