pub enum CreateEventSubscriptionError {
EventSubscriptionQuotaExceededFault(String),
InvalidTagFault(String),
SNSInvalidTopicFault(String),
SNSNoAuthorizationFault(String),
SNSTopicArnNotFoundFault(String),
SourceNotFoundFault(String),
SubscriptionAlreadyExistFault(String),
SubscriptionCategoryNotFoundFault(String),
SubscriptionEventIdNotFoundFault(String),
SubscriptionSeverityNotFoundFault(String),
TagLimitExceededFault(String),
}
Expand description
Errors returned by CreateEventSubscription
Variants§
EventSubscriptionQuotaExceededFault(String)
The request would exceed the allowed number of event subscriptions for this account. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.
InvalidTagFault(String)
The tag is invalid.
SNSInvalidTopicFault(String)
Amazon SNS has responded that there is a problem with the specified Amazon SNS topic.
SNSNoAuthorizationFault(String)
You do not have permission to publish to the specified Amazon SNS topic.
SNSTopicArnNotFoundFault(String)
An Amazon SNS topic with the specified Amazon Resource Name (ARN) does not exist.
SourceNotFoundFault(String)
The specified Amazon Redshift event source could not be found.
SubscriptionAlreadyExistFault(String)
There is already an existing event notification subscription with the specified name.
SubscriptionCategoryNotFoundFault(String)
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.
SubscriptionEventIdNotFoundFault(String)
An Amazon Redshift event with the specified event ID does not exist.
SubscriptionSeverityNotFoundFault(String)
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.
TagLimitExceededFault(String)
You have exceeded the number of tags allowed.
Implementations§
Trait Implementations§
Source§impl Debug for CreateEventSubscriptionError
impl Debug for CreateEventSubscriptionError
Source§impl Error for CreateEventSubscriptionError
impl Error for CreateEventSubscriptionError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl PartialEq for CreateEventSubscriptionError
impl PartialEq for CreateEventSubscriptionError
Source§fn eq(&self, other: &CreateEventSubscriptionError) -> bool
fn eq(&self, other: &CreateEventSubscriptionError) -> bool
self
and other
values to be equal, and is used by ==
.