[][src]Enum rusoto_dms::CreateEventSubscriptionError

pub enum CreateEventSubscriptionError {
    KMSAccessDeniedFault(String),
    KMSDisabledFault(String),
    KMSInvalidStateFault(String),
    KMSNotFoundFault(String),
    KMSThrottlingFault(String),
    ResourceAlreadyExistsFault(String),
    ResourceNotFoundFault(String),
    ResourceQuotaExceededFault(String),
    SNSInvalidTopicFault(String),
    SNSNoAuthorizationFault(String),
}

Errors returned by CreateEventSubscription

Variants

KMSAccessDeniedFault(String)

The ciphertext references a key that doesn't exist or that the DMS account doesn't have access to.

KMSDisabledFault(String)

The specified master key (CMK) isn't enabled.

KMSInvalidStateFault(String)

The state of the specified AWS KMS resource isn't valid for this request.

KMSNotFoundFault(String)

The specified AWS KMS entity or resource can't be found.

KMSThrottlingFault(String)

This request triggered AWS KMS request throttling.

ResourceAlreadyExistsFault(String)

The resource you are attempting to create already exists.

ResourceNotFoundFault(String)

The resource could not be found.

ResourceQuotaExceededFault(String)

The quota for this resource quota has been exceeded.

SNSInvalidTopicFault(String)

The SNS topic is invalid.

SNSNoAuthorizationFault(String)

You are not authorized for the SNS subscription.

Implementations

impl CreateEventSubscriptionError[src]

Trait Implementations

impl Debug for CreateEventSubscriptionError[src]

impl Display for CreateEventSubscriptionError[src]

impl Error for CreateEventSubscriptionError[src]

impl PartialEq<CreateEventSubscriptionError> for CreateEventSubscriptionError[src]

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