Values.AssociateCustomDomainRequestSourceAssociate 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).
type nonrec t = {serviceArn : AppRunnerResourceArn.t;The Amazon Resource Name (ARN) of the App Runner service that you want to associate a custom domain name with.
*)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).
*)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
*)}val make :
?enableWWWSubdomain:??? ->
serviceArn:AppRunnerResourceArn.t ->
domainName:DomainName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of NullableBoolean.t
| `String of AppRunnerResourceArn.t ])
list ]