[][src]Enum rusoto_route53::DeleteKeySigningKeyError

pub enum DeleteKeySigningKeyError {
    ConcurrentModification(String),
    InvalidKMSArn(String),
    InvalidKeySigningKeyStatus(String),
    InvalidSigningStatus(String),
    NoSuchKeySigningKey(String),
}

Errors returned by DeleteKeySigningKey

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.

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.

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.

NoSuchKeySigningKey(String)

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

Implementations

impl DeleteKeySigningKeyError[src]

Trait Implementations

impl Debug for DeleteKeySigningKeyError[src]

impl Display for DeleteKeySigningKeyError[src]

impl Error for DeleteKeySigningKeyError[src]

impl PartialEq<DeleteKeySigningKeyError> for DeleteKeySigningKeyError[src]

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