pub enum DeleteTopicError {
AuthorizationError(String),
ConcurrentAccess(String),
InternalError(String),
InvalidParameter(String),
NotFound(String),
StaleTag(String),
TagPolicy(String),
}Expand description
Errors returned by DeleteTopic
Variants§
AuthorizationError(String)
Indicates that the user has been denied access to the requested resource.
ConcurrentAccess(String)
Can't perform multiple operations on a tag simultaneously. Perform the operations sequentially.
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.
StaleTag(String)
A tag has been added to a resource with the same ARN as a deleted resource. Wait a short while and then retry the operation.
TagPolicy(String)
The request doesn't comply with the IAM tag policy. Correct your request and then retry it.
Implementations§
Source§impl DeleteTopicError
impl DeleteTopicError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteTopicError>
Trait Implementations§
Source§impl Debug for DeleteTopicError
impl Debug for DeleteTopicError
Source§impl Display for DeleteTopicError
impl Display for DeleteTopicError
Source§impl Error for DeleteTopicError
impl Error for DeleteTopicError
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 DeleteTopicError
impl PartialEq for DeleteTopicError
impl StructuralPartialEq for DeleteTopicError
Auto Trait Implementations§
impl Freeze for DeleteTopicError
impl RefUnwindSafe for DeleteTopicError
impl Send for DeleteTopicError
impl Sync for DeleteTopicError
impl Unpin for DeleteTopicError
impl UnwindSafe for DeleteTopicError
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