Module Values.UpdateReviewTemplateInputSource

Update a review template.

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

    The review template ARN.

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

    The review template name.

    *)
  3. description : TemplateDescription.t option;
    (*

    The review template description.

    *)
  4. notes : Notes.t option;
  5. lensesToAssociate : ReviewTemplateLensAliases.t option;
    (*

    A list of lens aliases or ARNs to apply to the review template.

    *)
  6. lensesToDisassociate : ReviewTemplateLensAliases.t option;
    (*

    A list of lens aliases or ARNs to unapply to the review template. The wellarchitected lens cannot be unapplied.

    *)
}
Sourceval context_ : string
Sourceval make : ?templateName:??? -> ?description:??? -> ?notes:??? -> ?lensesToAssociate:??? -> ?lensesToDisassociate:??? -> templateArn:TemplateArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of LensAlias.t ] 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