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

DnsRecord

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

A DNS record uploaded to your DNS provider.

interface DnsRecord {
Hostname?: string | null;
Type?: string | null;
Value?: string | null;
}

§Properties

§
Hostname?: string | null
[src]

The DNS hostname.- For example, domain.example.com.

§
Type?: string | null
[src]

The RFC 1035 record type. Possible values: CNAME, A, MX.

§
Value?: string | null
[src]

The value returned by the DNS for a query to that hostname and record type.