Module Values.HostedZoneAssociationSummarySource

Summary information about a hosted zone association.

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

    The unique identifier of the hosted zone association.

    *)
  2. resourceArn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the resource associated with the hosted zone.

    *)
  3. hostedZoneId : HostedZoneId.t option;
    (*

    The ID of the hosted zone.

    *)
  4. hostedZoneName : HostedZoneName.t option;
    (*

    The name of the hosted zone.

    *)
  5. name : ResourceName.t option;
    (*

    The name of the hosted zone association.

    *)
  6. createdAt : ISO8601TimeString.t option;
    (*

    The date and time when the hosted zone association was created.

    *)
  7. updatedAt : ISO8601TimeString.t option;
    (*

    The date and time when the hosted zone association was last updated.

    *)
  8. status : HostedZoneAssociationStatus.t option;
    (*

    The current status of the hosted zone association.

    *)
}
Sourceval make : ?id:??? -> ?resourceArn:??? -> ?hostedZoneId:??? -> ?hostedZoneName:??? -> ?name:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceId.t | `Timestamp of ISO8601TimeString.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