Class: Aws::AppRunner::Types::CustomDomain

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#certificate_validation_recordsArray<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_nameString

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).

Returns:

  • (String)


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_subdomainBoolean

When true, the subdomain www.DomainName is associated with the App Runner service in addition to the base domain.

Returns:

  • (Boolean)


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

#statusString

The current state of the domain name association.

Returns:

  • (String)


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