Enum rusoto_route53::CreateHostedZoneError[][src]

pub enum CreateHostedZoneError {
    ConflictingDomainExists(String),
    DelegationSetNotAvailable(String),
    DelegationSetNotReusable(String),
    HostedZoneAlreadyExists(String),
    InvalidDomainName(String),
    InvalidInput(String),
    InvalidVPCId(String),
    NoSuchDelegationSet(String),
    TooManyHostedZones(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateHostedZone

Variants

The cause of this error depends on whether you're trying to create a public or a private hosted zone:

  • Public hosted zone: Two hosted zones that have the same name or that have a parent/child relationship (example.com and test.example.com) can't have any common name servers. You tried to create a hosted zone that has the same name as an existing hosted zone or that's the parent or child of an existing hosted zone, and you specified a delegation set that shares one or more name servers with the existing hosted zone. For more information, see CreateReusableDelegationSet.

  • Private hosted zone: You specified an Amazon VPC that you're already using for another hosted zone, and the domain that you specified for one of the hosted zones is a subdomain of the domain that you specified for the other hosted zone. For example, you can't use the same Amazon VPC for the hosted zones for example.com and test.example.com.

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.

A reusable delegation set with the specified ID does not exist.

The hosted zone you're trying to create already exists. Amazon Route 53 returns this error when a hosted zone has already been created with the specified CallerReference.

The specified domain name is not valid.

The input is not valid.

The VPC ID that you specified either isn't a valid ID or the current account is not authorized to access this VPC.

A reusable delegation set with the specified ID does not exist.

This operation can't be completed either because the current account has reached the limit on the number of hosted zones or because you've reached the limit on the number of hosted zones that can be associated with a reusable delegation set.

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

To get the current limit on hosted zones that can be created by an account, see GetAccountLimit.

To get the current limit on hosted zones that can be associated with a reusable delegation set, see GetReusableDelegationSetLimit.

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

Trait Implementations

impl Debug for CreateHostedZoneError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for CreateHostedZoneError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateHostedZoneError
[src]

Performs the conversion.

impl From<Error> for CreateHostedZoneError
[src]

Performs the conversion.

impl Display for CreateHostedZoneError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateHostedZoneError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations