Module Values.UpdateHostedZoneCommentRequestSource

A request to update the comment for a hosted zone.

Sourcetype nonrec t = {
  1. id : ResourceId.t;
    (*

    The ID for the hosted zone that you want to update the comment for.

    *)
  2. comment : ResourceDescription.t option;
    (*

    The new comment for the hosted zone. If you don't specify a value for Comment, Amazon Route 53 deletes the existing value of the Comment element, if any.

    *)
}
Sourceval context_ : string
Sourceval make : ?comment:??? -> id:ResourceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceId.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