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)


2112
2113
2114
2115
2116
2117
2118
# File 'lib/aws-sdk-securityagent/types.rb', line 2112

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)


2112
2113
2114
2115
2116
2117
2118
# File 'lib/aws-sdk-securityagent/types.rb', line 2112

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)


2112
2113
2114
2115
2116
2117
2118
# File 'lib/aws-sdk-securityagent/types.rb', line 2112

class DnsVerification < Struct.new(
  :token,
  :dns_record_name,
  :dns_record_type)
  SENSITIVE = []
  include Aws::Structure
end