Module Values.UpdateReviewTemplateAnswerInputSource

Update a review template answer.

Sourcetype nonrec t = {
  1. templateArn : TemplateArn.t;
    (*

    The review template ARN.

    *)
  2. lensAlias : LensAlias.t;
  3. questionId : QuestionId.t;
  4. selectedChoices : SelectedChoices.t option;
  5. choiceUpdates : ChoiceUpdates.t option;
    (*

    A list of choices to be updated.

    *)
  6. notes : Notes.t option;
  7. isApplicable : IsApplicable.t option;
  8. reason : AnswerReason.t option;
    (*

    The update reason.

    *)
}
Sourceval context_ : string
Sourceval make : ?selectedChoices:??? -> ?choiceUpdates:??? -> ?notes:??? -> ?isApplicable:??? -> ?reason:??? -> templateArn:TemplateArn.t -> lensAlias:LensAlias.t -> questionId:QuestionId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsApplicable.t | `Enum of string | `List of [> `String of ChoiceId.t ] list | `Map of ([> `String of ChoiceId.t ] * [> `Structure of (string * [> `Enum of string | `String of ChoiceNotes.t ]) list ]) list | `String of TemplateArn.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