Module Values.AssociationSource

An object that represents the custom domain name association.

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

    The custom domain name’s certificate Amazon resource name (ARN).

    *)
  2. customDomainCertificateExpiryTime : SyntheticTimestamp_date_time.t option;
    (*

    The expiration time for the certificate.

    *)
  3. customDomainName : CustomDomainName.t option;
    (*

    The custom domain name associated with the workgroup.

    *)
  4. workgroupName : WorkgroupName.t option;
    (*

    The name of the workgroup associated with the database.

    *)
}
Sourceval make : ?customDomainCertificateArn:??? -> ?customDomainCertificateExpiryTime:??? -> ?customDomainName:??? -> ?workgroupName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CustomDomainCertificateArnString.t | `Timestamp of SyntheticTimestamp_date_time.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