Class: Aws::ACM::Types::DomainScope

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-acm/types.rb

Overview

Specifies the scope of domain validation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#exact_domainString

Whether validation applies to the exact domain.

Returns:

  • (String)


1873
1874
1875
1876
1877
1878
1879
# File 'lib/aws-sdk-acm/types.rb', line 1873

class DomainScope < Struct.new(
  :exact_domain,
  :subdomains,
  :wildcards)
  SENSITIVE = []
  include Aws::Structure
end

#subdomainsString

Whether validation applies to subdomains.

Returns:

  • (String)


1873
1874
1875
1876
1877
1878
1879
# File 'lib/aws-sdk-acm/types.rb', line 1873

class DomainScope < Struct.new(
  :exact_domain,
  :subdomains,
  :wildcards)
  SENSITIVE = []
  include Aws::Structure
end

#wildcardsString

Whether validation applies to wildcard domains.

Returns:

  • (String)


1873
1874
1875
1876
1877
1878
1879
# File 'lib/aws-sdk-acm/types.rb', line 1873

class DomainScope < Struct.new(
  :exact_domain,
  :subdomains,
  :wildcards)
  SENSITIVE = []
  include Aws::Structure
end