Module Values.ReviewTemplateSummarySource

Summary of a review template.

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

    Description of the review template.

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

    Lenses associated with the review template.

    *)
  3. owner : AwsAccountId.t option;
  4. updatedAt : Timestamp.t option;
  5. templateArn : TemplateArn.t option;
    (*

    The review template ARN.

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

    The name of the review template.

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

    The latest status of a review template.

    *)
}
Sourceval make : ?description:??? -> ?lenses:??? -> ?owner:??? -> ?updatedAt:??? -> ?templateArn:??? -> ?templateName:??? -> ?updateStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of LensAlias.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