[][src]Enum rusoto_route53::DisableHostedZoneDNSSECError

pub enum DisableHostedZoneDNSSECError {
    ConcurrentModification(String),
    DNSSECNotFound(String),
    InvalidArgument(String),
    InvalidKMSArn(String),
    InvalidKeySigningKeyStatus(String),
    KeySigningKeyInParentDSRecord(String),
    NoSuchHostedZone(String),
}

Errors returned by DisableHostedZoneDNSSEC

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.

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.

KeySigningKeyInParentDSRecord(String)

The key signing key (KSK) is specified in a parent DS record.

NoSuchHostedZone(String)

No hosted zone exists with the ID that you specified.

Implementations

impl DisableHostedZoneDNSSECError[src]

Trait Implementations

impl Debug for DisableHostedZoneDNSSECError[src]

impl Display for DisableHostedZoneDNSSECError[src]

impl Error for DisableHostedZoneDNSSECError[src]

impl PartialEq<DisableHostedZoneDNSSECError> for DisableHostedZoneDNSSECError[src]

impl StructuralPartialEq for DisableHostedZoneDNSSECError[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.