[][src]Enum rusoto_route53::DeactivateKeySigningKeyError

pub enum DeactivateKeySigningKeyError {
    ConcurrentModification(String),
    InvalidKeySigningKeyStatus(String),
    InvalidSigningStatus(String),
    KeySigningKeyInParentDSRecord(String),
    KeySigningKeyInUse(String),
    NoSuchKeySigningKey(String),
}

Errors returned by DeactivateKeySigningKey

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.

InvalidKeySigningKeyStatus(String)

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

InvalidSigningStatus(String)

Your hosted zone status isn't valid for this operation. In the hosted zone, change the status to enable DNSSEC or disable DNSSEC.

KeySigningKeyInParentDSRecord(String)

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

KeySigningKeyInUse(String)

The key signing key (KSK) that you specified can't be deactivated because it's the only KSK for a currently-enabled DNSSEC. Disable DNSSEC signing, or add or enable another KSK.

NoSuchKeySigningKey(String)

The specified key signing key (KSK) doesn't exist.

Implementations

impl DeactivateKeySigningKeyError[src]

Trait Implementations

impl Debug for DeactivateKeySigningKeyError[src]

impl Display for DeactivateKeySigningKeyError[src]

impl Error for DeactivateKeySigningKeyError[src]

impl PartialEq<DeactivateKeySigningKeyError> for DeactivateKeySigningKeyError[src]

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