Module Values.HostedZoneConfigSource

A complex type that contains an optional comment about your hosted zone. If you don't want to specify a comment, omit both the HostedZoneConfig and Comment elements.

Sourcetype nonrec t = {
  1. comment : ResourceDescription.t option;
    (*

    Any comments that you want to include about the hosted zone.

    *)
  2. privateZone : IsPrivateZone.t option;
    (*

    A value that indicates whether this is a private hosted zone.

    *)
}
Sourceval make : ?comment:??? -> ?privateZone:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsPrivateZone.t | `String of ResourceDescription.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