pub enum SetTopicAttributesError {
AuthorizationError(String),
InternalError(String),
InvalidParameter(String),
InvalidSecurity(String),
NotFound(String),
}
Expand description
Errors returned by SetTopicAttributes
Variants§
AuthorizationError(String)
Indicates that the user has been denied access to the requested resource.
InternalError(String)
Indicates an internal service error.
InvalidParameter(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.
NotFound(String)
Indicates that the requested resource does not exist.
Implementations§
Source§impl SetTopicAttributesError
impl SetTopicAttributesError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<SetTopicAttributesError>
Trait Implementations§
Source§impl Debug for SetTopicAttributesError
impl Debug for SetTopicAttributesError
Source§impl Display for SetTopicAttributesError
impl Display for SetTopicAttributesError
Source§impl Error for SetTopicAttributesError
impl Error for SetTopicAttributesError
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 SetTopicAttributesError
impl PartialEq for SetTopicAttributesError
impl StructuralPartialEq for SetTopicAttributesError
Auto Trait Implementations§
impl Freeze for SetTopicAttributesError
impl RefUnwindSafe for SetTopicAttributesError
impl Send for SetTopicAttributesError
impl Sync for SetTopicAttributesError
impl Unpin for SetTopicAttributesError
impl UnwindSafe for SetTopicAttributesError
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