Class: Aws::AppRunner::Types::AssociateCustomDomainRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::AssociateCustomDomainRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apprunner/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
A custom domain endpoint to associate.
-
#enable_www_subdomain ⇒ Boolean
Set to ‘true` to associate the subdomain `www.DomainName ` with the App Runner service in addition to the base domain.
-
#service_arn ⇒ String
The Amazon Resource Name (ARN) of the App Runner service that you want to associate a custom domain name with.
Instance Attribute Details
#domain_name ⇒ String
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`).
34 35 36 37 38 39 40 |
# File 'lib/aws-sdk-apprunner/types.rb', line 34 class AssociateCustomDomainRequest < Struct.new( :service_arn, :domain_name, :enable_www_subdomain) SENSITIVE = [] include Aws::Structure end |
#enable_www_subdomain ⇒ Boolean
Set to ‘true` to associate the subdomain `www.DomainName ` with the App Runner service in addition to the base domain.
Default: ‘true`
34 35 36 37 38 39 40 |
# File 'lib/aws-sdk-apprunner/types.rb', line 34 class AssociateCustomDomainRequest < Struct.new( :service_arn, :domain_name, :enable_www_subdomain) SENSITIVE = [] include Aws::Structure end |
#service_arn ⇒ String
The Amazon Resource Name (ARN) of the App Runner service that you want to associate a custom domain name with.
34 35 36 37 38 39 40 |
# File 'lib/aws-sdk-apprunner/types.rb', line 34 class AssociateCustomDomainRequest < Struct.new( :service_arn, :domain_name, :enable_www_subdomain) SENSITIVE = [] include Aws::Structure end |