Module Values.GetCommentReactionsInputSource

Returns information about reactions to a specified comment ID. Reactions from users who have been deleted will not be included in the count.

Sourcetype nonrec t = {
  1. commentId : CommentId.t;
    (*

    The ID of the comment for which you want to get reactions information.

    *)
  2. reactionUserArn : Arn.t option;
    (*

    Optional. The Amazon Resource Name (ARN) of the user or identity for which you want to get reaction information.

    *)
  3. nextToken : NextToken.t option;
    (*

    An enumeration token that, when provided in a request, returns the next batch of the results.

    *)
  4. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?reactionUserArn:??? -> ?nextToken:??? -> ?maxResults:??? -> commentId:CommentId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `String of CommentId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t