Module Values.HostedZoneSummarySource

In the response to a ListHostedZonesByVPC request, the HostedZoneSummaries element contains one HostedZoneSummary element for each hosted zone that the specified Amazon VPC is associated with. Each HostedZoneSummary element contains the hosted zone name and ID, and information about who owns the hosted zone.

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

    The Route 53 hosted zone ID of a private hosted zone that the specified VPC is associated with.

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

    The name of the private hosted zone, such as example.com.

    *)
  3. owner : HostedZoneOwner.t option;
    (*

    The owner of a private hosted zone that the specified VPC is associated with. The owner can be either an Amazon Web Services account or an Amazon Web Services service.

    *)
}
Sourceval make : ?hostedZoneId:??? -> ?name:??? -> ?owner:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceId.t | `Structure of (string * [> `String of AWSAccountID.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