pub struct GetCommentReactionsInput {
pub comment_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub reaction_user_arn: Option<String>,
}Fields§
§comment_id: StringThe ID of the comment for which you want to get reactions information.
max_results: Option<i64>A non-zero, non-negative integer used to limit the number of returned results. The default is the same as the allowed maximum, 1,000.
next_token: Option<String>An enumeration token that, when provided in a request, returns the next batch of the results.
reaction_user_arn: Option<String>Optional. The Amazon Resource Name (ARN) of the user or identity for which you want to get reaction information.
Trait Implementations§
Source§impl Clone for GetCommentReactionsInput
impl Clone for GetCommentReactionsInput
Source§fn clone(&self) -> GetCommentReactionsInput
fn clone(&self) -> GetCommentReactionsInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetCommentReactionsInput
impl Debug for GetCommentReactionsInput
Source§impl Default for GetCommentReactionsInput
impl Default for GetCommentReactionsInput
Source§fn default() -> GetCommentReactionsInput
fn default() -> GetCommentReactionsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetCommentReactionsInput
impl PartialEq for GetCommentReactionsInput
Source§impl Serialize for GetCommentReactionsInput
impl Serialize for GetCommentReactionsInput
impl StructuralPartialEq for GetCommentReactionsInput
Auto Trait Implementations§
impl Freeze for GetCommentReactionsInput
impl RefUnwindSafe for GetCommentReactionsInput
impl Send for GetCommentReactionsInput
impl Sync for GetCommentReactionsInput
impl Unpin for GetCommentReactionsInput
impl UnwindSafe for GetCommentReactionsInput
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