[][src]Enum rusoto_route53::CreateKeySigningKeyError

pub enum CreateKeySigningKeyError {
    ConcurrentModification(String),
    InvalidArgument(String),
    InvalidInput(String),
    InvalidKMSArn(String),
    InvalidKeySigningKeyName(String),
    InvalidKeySigningKeyStatus(String),
    InvalidSigningStatus(String),
    KeySigningKeyAlreadyExists(String),
    NoSuchHostedZone(String),
    TooManyKeySigningKeys(String),
}

Errors returned by CreateKeySigningKey

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.

InvalidArgument(String)

Parameter name is not valid.

InvalidInput(String)

The input is not valid.

InvalidKMSArn(String)

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

InvalidKeySigningKeyName(String)

The key signing key (KSK) name that you specified isn't a valid name.

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.

KeySigningKeyAlreadyExists(String)

You've already created a key signing key (KSK) with this name or with the same customer managed key (CMK) ARN.

NoSuchHostedZone(String)

No hosted zone exists with the ID that you specified.

TooManyKeySigningKeys(String)

You've reached the limit for the number of key signing keys (KSKs). Remove at least one KSK, and then try again.

Implementations

impl CreateKeySigningKeyError[src]

Trait Implementations

impl Debug for CreateKeySigningKeyError[src]

impl Display for CreateKeySigningKeyError[src]

impl Error for CreateKeySigningKeyError[src]

impl PartialEq<CreateKeySigningKeyError> for CreateKeySigningKeyError[src]

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