Enum rusoto_redshift::ModifyEventSubscriptionError[][src]

pub enum ModifyEventSubscriptionError {
    InvalidSubscriptionStateFault(String),
    SNSInvalidTopicFault(String),
    SNSNoAuthorizationFault(String),
    SNSTopicArnNotFoundFault(String),
    SourceNotFoundFault(String),
    SubscriptionCategoryNotFoundFault(String),
    SubscriptionEventIdNotFoundFault(String),
    SubscriptionNotFoundFault(String),
    SubscriptionSeverityNotFoundFault(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by ModifyEventSubscription

Variants

The subscription request is invalid because it is a duplicate request. This subscription request is already in progress.

Amazon SNS has responded that there is a problem with the specified Amazon SNS topic.

You do not have permission to publish to the specified Amazon SNS topic.

An Amazon SNS topic with the specified Amazon Resource Name (ARN) does not exist.

The specified Amazon Redshift event source could not be found.

The value specified for the event category was not one of the allowed values, or it specified a category that does not apply to the specified source type. The allowed values are Configuration, Management, Monitoring, and Security.

An Amazon Redshift event with the specified event ID does not exist.

An Amazon Redshift event notification subscription with the specified name does not exist.

The value specified for the event severity was not one of the allowed values, or it specified a severity that does not apply to the specified source type. The allowed values are ERROR and INFO.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl ModifyEventSubscriptionError
[src]

Trait Implementations

impl Debug for ModifyEventSubscriptionError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ModifyEventSubscriptionError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<XmlParseError> for ModifyEventSubscriptionError
[src]

Performs the conversion.

impl From<CredentialsError> for ModifyEventSubscriptionError
[src]

Performs the conversion.

impl From<HttpDispatchError> for ModifyEventSubscriptionError
[src]

Performs the conversion.

impl From<Error> for ModifyEventSubscriptionError
[src]

Performs the conversion.

impl Display for ModifyEventSubscriptionError
[src]

Formats the value using the given formatter. Read more

impl Error for ModifyEventSubscriptionError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations