Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TestDNSAnswerResponse

import type { TestDNSAnswerResponse } from "https://aws-api.deno.dev/v0.4/services/route53.ts?docs=full";

A complex type that contains the response to a TestDNSAnswer request.

interface TestDNSAnswerResponse {
Nameserver: string;
Protocol: string;
RecordData: string[];
RecordName: string;
RecordType: RRType;
ResponseCode: string;
}

§Properties

§
Nameserver: string
[src]

The Amazon Route 53 name server used to respond to the request.

§
Protocol: string
[src]

The protocol that Amazon Route 53 used to respond to the request, either UDP or TCP.

§
RecordData: string[]
[src]

A list that contains values that Amazon Route 53 returned for this resource record set.

§
RecordName: string
[src]

The name of the resource record set that you submitted a request for.

§
RecordType: RRType
[src]

The type of the resource record set that you submitted a request for.

§
ResponseCode: string
[src]

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.