Class: Aws::AppRunner::Types::CustomDomain
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::CustomDomain
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Describes a custom domain that's associated with an App Runner service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_validation_records ⇒ Array<Types::CertificateValidationRecord>
A list of certificate CNAME records that's used for this domain name.
-
#domain_name ⇒ String
An associated custom domain endpoint.
-
#enable_www_subdomain ⇒ Boolean
When
true
, the subdomainwww.DomainName
is associated with the App Runner service in addition to the base domain. -
#status ⇒ String
The current state of the domain name association.
Instance Attribute Details
#certificate_validation_records ⇒ Array<Types::CertificateValidationRecord>
A list of certificate CNAME records that's used for this domain name.
920 921 922 923 924 925 926 927 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 920 class CustomDomain < Struct.new( :domain_name, :enable_www_subdomain, :certificate_validation_records, :status) SENSITIVE = [] include Aws::Structure end |
#domain_name ⇒ String
An associated custom domain endpoint. It can be 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
).
920 921 922 923 924 925 926 927 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 920 class CustomDomain < Struct.new( :domain_name, :enable_www_subdomain, :certificate_validation_records, :status) SENSITIVE = [] include Aws::Structure end |
#enable_www_subdomain ⇒ Boolean
When true
, the subdomain www.DomainName
is associated with the
App Runner service in addition to the base domain.
920 921 922 923 924 925 926 927 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 920 class CustomDomain < Struct.new( :domain_name, :enable_www_subdomain, :certificate_validation_records, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current state of the domain name association.
920 921 922 923 924 925 926 927 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 920 class CustomDomain < Struct.new( :domain_name, :enable_www_subdomain, :certificate_validation_records, :status) SENSITIVE = [] include Aws::Structure end |