Disassociate Custom Domain
| apprunner_disassociate_custom_domain | R Documentation | 
Disassociate a custom domain name from an App Runner service¶
Description¶
Disassociate a custom domain name from an App Runner service.
Certificates tracking domain validity are associated with a custom domain and are stored in AWS Certificate Manager (ACM). These certificates aren't deleted as part of this action. App Runner delays certificate deletion for 30 days after a domain is disassociated from your service.
Usage¶
apprunner_disassociate_custom_domain(ServiceArn, DomainName)
Arguments¶
| ServiceArn | [required] The Amazon Resource Name (ARN) of the App Runner service that you want to disassociate a custom domain name from. | 
| DomainName | [required] The domain name that you want to disassociate from the App Runner service. | 
Value¶
A list with the following syntax:
list(
  DNSTarget = "string",
  ServiceArn = "string",
  CustomDomain = list(
    DomainName = "string",
    EnableWWWSubdomain = TRUE|FALSE,
    CertificateValidationRecords = list(
      list(
        Name = "string",
        Type = "string",
        Value = "string",
        Status = "PENDING_VALIDATION"|"SUCCESS"|"FAILED"
      )
    ),
    Status = "CREATING"|"CREATE_FAILED"|"ACTIVE"|"DELETING"|"DELETE_FAILED"|"PENDING_CERTIFICATE_DNS_VALIDATION"|"BINDING_CERTIFICATE"
  ),
  VpcDNSTargets = list(
    list(
      VpcIngressConnectionArn = "string",
      VpcId = "string",
      DomainName = "string"
    )
  )
)
Request syntax¶
svc$disassociate_custom_domain(
  ServiceArn = "string",
  DomainName = "string"
)