Class: Aws::SecurityAgent::Types::DnsVerification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::DnsVerification
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityagent/types.rb
Overview
Contains DNS verification details for a target domain, including the DNS record to create for domain ownership verification.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dns_record_name ⇒ String
The name of the DNS record to create for verification.
-
#dns_record_type ⇒ String
The type of DNS record to create.
-
#token ⇒ String
The verification token to include in the DNS record value.
Instance Attribute Details
#dns_record_name ⇒ String
The name of the DNS record to create for verification.
1458 1459 1460 1461 1462 1463 1464 |
# File 'lib/aws-sdk-securityagent/types.rb', line 1458 class DnsVerification < Struct.new( :token, :dns_record_name, :dns_record_type) SENSITIVE = [] include Aws::Structure end |
#dns_record_type ⇒ String
The type of DNS record to create. Currently, only TXT is supported.
1458 1459 1460 1461 1462 1463 1464 |
# File 'lib/aws-sdk-securityagent/types.rb', line 1458 class DnsVerification < Struct.new( :token, :dns_record_name, :dns_record_type) SENSITIVE = [] include Aws::Structure end |
#token ⇒ String
The verification token to include in the DNS record value.
1458 1459 1460 1461 1462 1463 1464 |
# File 'lib/aws-sdk-securityagent/types.rb', line 1458 class DnsVerification < Struct.new( :token, :dns_record_name, :dns_record_type) SENSITIVE = [] include Aws::Structure end |