Class: Aws::Lightsail::Types::DomainValidationRecord
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::DomainValidationRecord
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Describes the domain validation records of an Amazon Lightsail SSL/TLS certificate.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The domain name of the certificate validation record.
-
#resource_record ⇒ Types::ResourceRecord
An object that describes the DNS records to add to your domain's DNS to validate it for the certificate.
Instance Attribute Details
#domain_name ⇒ String
The domain name of the certificate validation record. For example,
example.com
or www.example.com
.
6821 6822 6823 6824 6825 6826 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 6821 class DomainValidationRecord < Struct.new( :domain_name, :resource_record) SENSITIVE = [] include Aws::Structure end |
#resource_record ⇒ Types::ResourceRecord
An object that describes the DNS records to add to your domain's DNS to validate it for the certificate.
6821 6822 6823 6824 6825 6826 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 6821 class DomainValidationRecord < Struct.new( :domain_name, :resource_record) SENSITIVE = [] include Aws::Structure end |