Class: Aws::ACM::Types::ResourceRecord
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACM::Types::ResourceRecord
- Defined in:
- gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb
Overview
Contains a DNS record value that you can use to validate ownership or control of a domain. This is used by the DescribeCertificate action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the DNS record to create in your domain.
-
#type ⇒ String
The type of DNS record.
-
#value ⇒ String
The value of the CNAME record to add to your DNS database.
Instance Attribute Details
#name ⇒ String
The name of the DNS record to create in your domain. This is supplied by ACM.
1502 1503 1504 1505 1506 1507 1508 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 1502 class ResourceRecord < Struct.new( :name, :type, :value) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of DNS record. Currently this can be CNAME
.
1502 1503 1504 1505 1506 1507 1508 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 1502 class ResourceRecord < Struct.new( :name, :type, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the CNAME record to add to your DNS database. This is supplied by ACM.
1502 1503 1504 1505 1506 1507 1508 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 1502 class ResourceRecord < Struct.new( :name, :type, :value) SENSITIVE = [] include Aws::Structure end |