Module Values.AssociationSource

Contains information about the custom domain name association.

Sourcetype nonrec t = {
  1. customDomainCertificateArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for the certificate associated with the custom domain.

    *)
  2. customDomainCertificateExpiryDate : TStamp.t option;
    (*

    The expiration date for the certificate.

    *)
  3. certificateAssociations : CertificateAssociationList.t option;
    (*

    A list of all associated clusters and domain names tied to a specific certificate.

    *)
}
Sourceval make : ?customDomainCertificateArn:??? -> ?customDomainCertificateExpiryDate:??? -> ?certificateAssociations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Timestamp of TStamp.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