Module Values.RecommendationFeedbackSource

Information about the recommendation feedback.

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

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

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

    The recommendation ID that can be used to track the provided recommendations. Later on it can be used to collect the feedback.

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

    List for storing reactions. Reactions are utf-8 text code for emojis. You can send an empty list to clear off all your feedback.

    *)
  4. userId : UserId.t option;
    (*

    The ID of the user that made the API call. The UserId is an IAM principal that can be specified as an Amazon Web Services account ID or an Amazon Resource Name (ARN). For more information, see Specifying a Principal in the Amazon Web Services Identity and Access Management User Guide.

    *)
  5. createdTimeStamp : TimeStamp.t option;
    (*

    The time at which the feedback was created.

    *)
  6. lastUpdatedTimeStamp : TimeStamp.t option;
    (*

    The time at which the feedback was last updated.

    *)
}
Sourceval make : ?codeReviewArn:??? -> ?recommendationId:??? -> ?reactions:??? -> ?userId:??? -> ?createdTimeStamp:??? -> ?lastUpdatedTimeStamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of Arn.t | `Timestamp of TimeStamp.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