Module Values.CustomDomainSource

Describes a custom domain that's associated with an App Runner service.

Sourcetype nonrec t = {
  1. domainName : DomainName.t option;
    (*

    An associated custom domain endpoint. It can be a root domain (for example, example.com), a subdomain (for example, login.example.com or admin.login.example.com), or a wildcard (for example, *.example.com).

    *)
  2. enableWWWSubdomain : NullableBoolean.t option;
    (*

    When true, the subdomain www.DomainName is associated with the App Runner service in addition to the base domain.

    *)
  3. certificateValidationRecords : CertificateValidationRecordList.t option;
    (*

    A list of certificate CNAME records that's used for this domain name.

    *)
  4. status : CustomDomainAssociationStatus.t option;
    (*

    The current state of the domain name association.

    *)
}
Sourceval make : ?domainName:??? -> ?enableWWWSubdomain:??? -> ?certificateValidationRecords:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `String of DomainName.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