pub enum GetCommentReactionsError {
CommentDeleted(String),
CommentDoesNotExist(String),
CommentIdRequired(String),
InvalidCommentId(String),
InvalidContinuationToken(String),
InvalidMaxResults(String),
InvalidReactionUserArn(String),
}Expand description
Errors returned by GetCommentReactions
Variants§
CommentDeleted(String)
This comment has already been deleted. You cannot edit or delete a deleted comment.
CommentDoesNotExist(String)
No comment exists with the provided ID. Verify that you have used the correct ID, and then try again.
CommentIdRequired(String)
The comment ID is missing or null. A comment ID is required.
InvalidCommentId(String)
The comment ID is not in a valid format. Make sure that you have provided the full comment ID.
InvalidContinuationToken(String)
The specified continuation token is not valid.
InvalidMaxResults(String)
The specified number of maximum results is not valid.
InvalidReactionUserArn(String)
The Amazon Resource Name (ARN) of the user or identity is not valid.
Implementations§
Source§impl GetCommentReactionsError
impl GetCommentReactionsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetCommentReactionsError>
Trait Implementations§
Source§impl Debug for GetCommentReactionsError
impl Debug for GetCommentReactionsError
Source§impl Display for GetCommentReactionsError
impl Display for GetCommentReactionsError
Source§impl Error for GetCommentReactionsError
impl Error for GetCommentReactionsError
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 GetCommentReactionsError
impl PartialEq for GetCommentReactionsError
impl StructuralPartialEq for GetCommentReactionsError
Auto Trait Implementations§
impl Freeze for GetCommentReactionsError
impl RefUnwindSafe for GetCommentReactionsError
impl Send for GetCommentReactionsError
impl Sync for GetCommentReactionsError
impl Unpin for GetCommentReactionsError
impl UnwindSafe for GetCommentReactionsError
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