Class: Aws::AppRunner::Types::DisassociateCustomDomainRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::DisassociateCustomDomainRequest
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Note:
When making an API call, you may pass DisassociateCustomDomainRequest data as a hash:
{
service_arn: "AppRunnerResourceArn", # required
domain_name: "DomainName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The domain name that you want to disassociate from the App Runner service.
-
#service_arn ⇒ String
The Amazon Resource Name (ARN) of the App Runner service that you want to disassociate a custom domain name from.
Instance Attribute Details
#domain_name ⇒ String
The domain name that you want to disassociate from the App Runner service.
1410 1411 1412 1413 1414 1415 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 1410 class DisassociateCustomDomainRequest < Struct.new( :service_arn, :domain_name) SENSITIVE = [] include Aws::Structure end |
#service_arn ⇒ String
The Amazon Resource Name (ARN) of the App Runner service that you want to disassociate a custom domain name from.
1410 1411 1412 1413 1414 1415 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 1410 class DisassociateCustomDomainRequest < Struct.new( :service_arn, :domain_name) SENSITIVE = [] include Aws::Structure end |