pub enum ModifyEventSubscriptionError {
EventSubscriptionQuotaExceededFault(String),
SNSInvalidTopicFault(String),
SNSNoAuthorizationFault(String),
SNSTopicArnNotFoundFault(String),
SubscriptionCategoryNotFoundFault(String),
SubscriptionNotFoundFault(String),
}Expand description
Errors returned by ModifyEventSubscription
Variants§
EventSubscriptionQuotaExceededFault(String)
You have exceeded the number of events you can subscribe to.
SNSInvalidTopicFault(String)
The SNS topic is invalid.
SNSNoAuthorizationFault(String)
There is no SNS authorization.
SNSTopicArnNotFoundFault(String)
The ARN of the SNS topic could not be found.
SubscriptionCategoryNotFoundFault(String)
The designated subscription category could not be found.
SubscriptionNotFoundFault(String)
The designated subscription could not be found.
Implementations§
Trait Implementations§
Source§impl Debug for ModifyEventSubscriptionError
impl Debug for ModifyEventSubscriptionError
Source§impl Error for ModifyEventSubscriptionError
impl Error for ModifyEventSubscriptionError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ModifyEventSubscriptionError
impl PartialEq for ModifyEventSubscriptionError
Source§fn eq(&self, other: &ModifyEventSubscriptionError) -> bool
fn eq(&self, other: &ModifyEventSubscriptionError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModifyEventSubscriptionError
Auto Trait Implementations§
impl Freeze for ModifyEventSubscriptionError
impl RefUnwindSafe for ModifyEventSubscriptionError
impl Send for ModifyEventSubscriptionError
impl Sync for ModifyEventSubscriptionError
impl Unpin for ModifyEventSubscriptionError
impl UnwindSafe for ModifyEventSubscriptionError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more