[][src]Enum rusoto_route53::EnableHostedZoneDNSSECError

pub enum EnableHostedZoneDNSSECError {
    ConcurrentModification(String),
    DNSSECNotFound(String),
    HostedZonePartiallyDelegated(String),
    InvalidArgument(String),
    InvalidKMSArn(String),
    InvalidKeySigningKeyStatus(String),
    KeySigningKeyWithActiveStatusNotFound(String),
    NoSuchHostedZone(String),
}

Errors returned by EnableHostedZoneDNSSEC

Variants

ConcurrentModification(String)

Another user submitted a request to create, update, or delete the object at the same time that you did. Retry the request.

DNSSECNotFound(String)

The hosted zone doesn't have any DNSSEC resources.

HostedZonePartiallyDelegated(String)

The hosted zone nameservers don't match the parent nameservers. The hosted zone and parent must have the same nameservers.

InvalidArgument(String)

Parameter name is not valid.

InvalidKMSArn(String)

The KeyManagementServiceArn that you specified isn't valid to use with DNSSEC signing.

InvalidKeySigningKeyStatus(String)

The key signing key (KSK) status isn't valid or another KSK has the status INTERNAL_FAILURE.

KeySigningKeyWithActiveStatusNotFound(String)

A key signing key (KSK) with ACTIVE status wasn't found.

NoSuchHostedZone(String)

No hosted zone exists with the ID that you specified.

Implementations

impl EnableHostedZoneDNSSECError[src]

Trait Implementations

impl Debug for EnableHostedZoneDNSSECError[src]

impl Display for EnableHostedZoneDNSSECError[src]

impl Error for EnableHostedZoneDNSSECError[src]

impl PartialEq<EnableHostedZoneDNSSECError> for EnableHostedZoneDNSSECError[src]

impl StructuralPartialEq for EnableHostedZoneDNSSECError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.