Module Values.AwsRoute53HostedZoneObjectDetailsSource

An object that contains information about an Amazon Route 53 hosted zone.

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

    The ID that Route 53 assigns to the hosted zone when you create it.

    *)
  2. name : NonEmptyString.t option;
    (*

    The name of the domain. For public hosted zones, this is the name that you have registered with your DNS registrar.

    *)
  3. config : AwsRoute53HostedZoneConfigDetails.t option;
    (*

    An object that includes the Comment element.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?config:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ]) 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