Module Values.PutRecommendationFeedbackRequestSource

Stores customer feedback for a CodeGuru Reviewer recommendation. When this API is called again with different reactions the previous feedback is overwritten.

Sourcetype nonrec t = {
  1. codeReviewArn : Arn.t;
    (*

    The Amazon Resource Name (ARN) of the CodeReview object.

    *)
  2. recommendationId : RecommendationId.t;
    (*

    The recommendation ID that can be used to track the provided recommendations and then to collect the feedback.

    *)
  3. reactions : Reactions.t;
    (*

    List for storing reactions. Reactions are utf-8 text code for emojis. If you send an empty list it clears all your feedback.

    *)
}
Sourceval context_ : string
Sourceval make : codeReviewArn:Arn.t -> recommendationId:RecommendationId.t -> reactions:Reactions.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of Arn.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