Module Values.GetCommentReactionsOutputSource

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. reactionsForComment : ReactionsForCommentList.t option;
    (*

    An array of reactions to the specified comment.

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

    An enumeration token that can be used in a request to return the next batch of the results.

    *)
}
Sourcetype nonrec error = [
  1. | `CommentDeletedException of CommentDeletedException.t
  2. | `CommentDoesNotExistException of CommentDoesNotExistException.t
  3. | `CommentIdRequiredException of CommentIdRequiredException.t
  4. | `InvalidCommentIdException of InvalidCommentIdException.t
  5. | `InvalidContinuationTokenException of InvalidContinuationTokenException.t
  6. | `InvalidMaxResultsException of InvalidMaxResultsException.t
  7. | `InvalidReactionUserArnException of InvalidReactionUserArnException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?reactionsForComment:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `CommentDeletedException of unit | `CommentDoesNotExistException of unit | `CommentIdRequiredException of unit | `InvalidCommentIdException of unit | `InvalidContinuationTokenException of unit | `InvalidMaxResultsException of unit | `InvalidReactionUserArnException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `CommentDeletedException of unit | `CommentDoesNotExistException of unit | `CommentIdRequiredException of unit | `InvalidCommentIdException of unit | `InvalidContinuationTokenException of unit | `InvalidMaxResultsException of unit | `InvalidReactionUserArnException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of Count.t | `List of [> `String of Arn.t ] list | `Structure of (string * [> `String of ReactionEmoji.t ]) list ]) list ] list | `String of NextToken.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