Module Values.AssociateCustomDomainRequestSource

Associate your own domain name with the App Runner subdomain URL of your App Runner service. After you call AssociateCustomDomain and receive a successful response, use the information in the CustomDomain record that's returned to add CNAME records to your Domain Name System (DNS). For each mapped domain name, add a mapping to the target App Runner subdomain and one or more certificate validation records. App Runner then performs DNS validation to verify that you own or control the domain name that you associated. App Runner tracks domain validity in a certificate stored in AWS Certificate Manager (ACM).

Sourcetype nonrec t = {
  1. serviceArn : AppRunnerResourceArn.t;
    (*

    The Amazon Resource Name (ARN) of the App Runner service that you want to associate a custom domain name with.

    *)
  2. domainName : DomainName.t;
    (*

    A custom domain endpoint to associate. Specify 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).

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

    Set to true to associate the subdomain www.DomainName with the App Runner service in addition to the base domain. Default: true

    *)
}
Sourceval context_ : string
Sourceval make : ?enableWWWSubdomain:??? -> serviceArn:AppRunnerResourceArn.t -> domainName:DomainName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `String of AppRunnerResourceArn.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