[][src]Enum rusoto_sns::PublishError

pub enum PublishError {
    AuthorizationError(String),
    EndpointDisabled(String),
    InternalError(String),
    InvalidParameter(String),
    InvalidParameterValue(String),
    InvalidSecurity(String),
    KMSAccessDenied(String),
    KMSDisabled(String),
    KMSInvalidState(String),
    KMSNotFound(String),
    KMSOptInRequired(String),
    KMSThrottling(String),
    NotFound(String),
    PlatformApplicationDisabled(String),
}

Errors returned by Publish

Variants

AuthorizationError(String)

Indicates that the user has been denied access to the requested resource.

EndpointDisabled(String)

Exception error indicating endpoint disabled.

InternalError(String)

Indicates an internal service error.

InvalidParameter(String)

Indicates that a request parameter does not comply with the associated constraints.

InvalidParameterValue(String)

Indicates that a request parameter does not comply with the associated constraints.

InvalidSecurity(String)

The credential signature isn't valid. You must use an HTTPS endpoint and sign your request using Signature Version 4.

KMSAccessDenied(String)

The ciphertext references a key that doesn't exist or that you don't have access to.

KMSDisabled(String)

The request was rejected because the specified customer master key (CMK) isn't enabled.

KMSInvalidState(String)

The request was rejected because the state of the specified resource isn't valid for this request. For more information, see How Key State Affects Use of a Customer Master Key in the AWS Key Management Service Developer Guide.

KMSNotFound(String)

The request was rejected because the specified entity or resource can't be found.

KMSOptInRequired(String)

The AWS access key ID needs a subscription for the service.

KMSThrottling(String)

The request was denied due to request throttling. For more information about throttling, see Limits in the AWS Key Management Service Developer Guide.

NotFound(String)

Indicates that the requested resource does not exist.

PlatformApplicationDisabled(String)

Exception error indicating platform application disabled.

Implementations

impl PublishError[src]

Trait Implementations

impl Debug for PublishError[src]

impl Display for PublishError[src]

impl Error for PublishError[src]

impl PartialEq<PublishError> for PublishError[src]

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