pub enum SetSubscriptionAttributesError {
AuthorizationError(String),
FilterPolicyLimitExceeded(String),
InternalError(String),
InvalidParameter(String),
NotFound(String),
}Expand description
Errors returned by SetSubscriptionAttributes
Variants§
AuthorizationError(String)
Indicates that the user has been denied access to the requested resource.
FilterPolicyLimitExceeded(String)
Indicates that the number of filter polices in your AWS account exceeds the limit. To add more filter polices, submit an SNS Limit Increase case in the AWS Support Center.
InternalError(String)
Indicates an internal service error.
InvalidParameter(String)
Indicates that a request parameter does not comply with the associated constraints.
NotFound(String)
Indicates that the requested resource does not exist.
Implementations§
Trait Implementations§
Source§impl Error for SetSubscriptionAttributesError
impl Error for SetSubscriptionAttributesError
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 SetSubscriptionAttributesError
impl PartialEq for SetSubscriptionAttributesError
Source§fn eq(&self, other: &SetSubscriptionAttributesError) -> bool
fn eq(&self, other: &SetSubscriptionAttributesError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SetSubscriptionAttributesError
Auto Trait Implementations§
impl Freeze for SetSubscriptionAttributesError
impl RefUnwindSafe for SetSubscriptionAttributesError
impl Send for SetSubscriptionAttributesError
impl Sync for SetSubscriptionAttributesError
impl Unpin for SetSubscriptionAttributesError
impl UnwindSafe for SetSubscriptionAttributesError
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