Class: Aws::Route53::Types::TestDNSAnswerResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::TestDNSAnswerResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53/types.rb
Overview
A complex type that contains the response to a ‘TestDNSAnswer` request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#nameserver ⇒ String
The Amazon Route 53 name server used to respond to the request.
-
#protocol ⇒ String
The protocol that Amazon Route 53 used to respond to the request, either ‘UDP` or `TCP`.
-
#record_data ⇒ Array<String>
A list that contains values that Amazon Route 53 returned for this resource record set.
-
#record_name ⇒ String
The name of the resource record set that you submitted a request for.
-
#record_type ⇒ String
The type of the resource record set that you submitted a request for.
-
#response_code ⇒ String
A code that indicates whether the request is valid or not.
Instance Attribute Details
#nameserver ⇒ String
The Amazon Route 53 name server used to respond to the request.
7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 |
# File 'lib/aws-sdk-route53/types.rb', line 7104 class TestDNSAnswerResponse < Struct.new( :nameserver, :record_name, :record_type, :record_data, :response_code, :protocol) SENSITIVE = [] include Aws::Structure end |
#protocol ⇒ String
The protocol that Amazon Route 53 used to respond to the request, either ‘UDP` or `TCP`.
7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 |
# File 'lib/aws-sdk-route53/types.rb', line 7104 class TestDNSAnswerResponse < Struct.new( :nameserver, :record_name, :record_type, :record_data, :response_code, :protocol) SENSITIVE = [] include Aws::Structure end |
#record_data ⇒ Array<String>
A list that contains values that Amazon Route 53 returned for this resource record set.
7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 |
# File 'lib/aws-sdk-route53/types.rb', line 7104 class TestDNSAnswerResponse < Struct.new( :nameserver, :record_name, :record_type, :record_data, :response_code, :protocol) SENSITIVE = [] include Aws::Structure end |
#record_name ⇒ String
The name of the resource record set that you submitted a request for.
7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 |
# File 'lib/aws-sdk-route53/types.rb', line 7104 class TestDNSAnswerResponse < Struct.new( :nameserver, :record_name, :record_type, :record_data, :response_code, :protocol) SENSITIVE = [] include Aws::Structure end |
#record_type ⇒ String
The type of the resource record set that you submitted a request for.
7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 |
# File 'lib/aws-sdk-route53/types.rb', line 7104 class TestDNSAnswerResponse < Struct.new( :nameserver, :record_name, :record_type, :record_data, :response_code, :protocol) SENSITIVE = [] include Aws::Structure end |
#response_code ⇒ String
A code that indicates whether the request is valid or not. The most common response code is ‘NOERROR`, meaning that the request is valid. If the response is not valid, Amazon Route 53 returns a response code that describes the error. For a list of possible response codes, see [DNS RCODES] on the IANA website.
[1]: www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-6
7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 |
# File 'lib/aws-sdk-route53/types.rb', line 7104 class TestDNSAnswerResponse < Struct.new( :nameserver, :record_name, :record_type, :record_data, :response_code, :protocol) SENSITIVE = [] include Aws::Structure end |