Values.GetCommentReactionsInputSourceReturns information about reactions to a specified comment ID. Reactions from users who have been deleted will not be included in the count.
type nonrec t = {commentId : CommentId.t;The ID of the comment for which you want to get reactions information.
*)reactionUserArn : Arn.t option;Optional. The Amazon Resource Name (ARN) of the user or identity for which you want to get reaction information.
*)nextToken : NextToken.t option;An enumeration token that, when provided in a request, returns the next batch of the results.
*)maxResults : MaxResults.t option;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.
*)}val make :
?reactionUserArn:??? ->
?nextToken:??? ->
?maxResults:??? ->
commentId:CommentId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Integer of MaxResults.t | `String of CommentId.t ]) list ]