Class: Aws::SecurityAgent::Types::DnsVerification

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

Instance Attribute Details

#dns_record_nameString

The name of the DNS record to create for verification.

Returns:

  • (String)


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_typeString

The type of DNS record to create. Currently, only TXT is supported.

Returns:

  • (String)


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

#tokenString

The verification token to include in the DNS record value.

Returns:

  • (String)


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