Module Values.ReviewTemplateSource

A review template.

Sourcetype nonrec t = {
  1. description : TemplateDescription.t option;
    (*

    The review template description.

    *)
  2. lenses : ReviewTemplateLenses.t option;
    (*

    The lenses applied to the review template.

    *)
  3. notes : Notes.t option;
  4. questionCounts : QuestionCounts.t option;
    (*

    A count of how many total questions are answered and unanswered in the review template.

    *)
  5. owner : AwsAccountId.t option;
  6. updatedAt : Timestamp.t option;
  7. templateArn : TemplateArn.t option;
    (*

    The review template ARN.

    *)
  8. templateName : TemplateName.t option;
    (*

    The name of the review template.

    *)
  9. tags : TagMap.t option;
    (*

    The tags assigned to the review template.

    *)
  10. updateStatus : ReviewTemplateUpdateStatus.t option;
    (*

    The latest status of a review template.

    *)
  11. shareInvitationId : ShareInvitationId.t option;
    (*

    The ID assigned to the template share invitation.

    *)
}
Sourceval make : ?description:??? -> ?lenses:??? -> ?notes:??? -> ?questionCounts:??? -> ?owner:??? -> ?updatedAt:??? -> ?templateArn:??? -> ?templateName:??? -> ?tags:??? -> ?updateStatus:??? -> ?shareInvitationId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of LensAlias.t ] list | `Map of ([> `Enum of string | `String of TagKey.t ] * [> `Integer of Count.t | `String of TagValue.t ]) list | `String of TemplateDescription.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