Skip to the content.

Interface: AAAARecord

Defined in: types.ts:18

AAAA record - Maps a domain name to an IPv6 address.

Example

const record: AAAARecord = {
    type: "AAAA",
    address: "2001:db8::1",
    ttl: 300,
};

Extends

Properties

address

address: string

Defined in: types.ts:20

IPv6 address in colon-separated hexadecimal notation


type

type: "AAAA"

Defined in: types.ts:21

The type of DNS record

Overrides

BaseDNSRecord.type


ttl?

optional ttl?: number

Defined in: types.ts:76

Time to live in seconds (optional)

Inherited from

BaseDNSRecord.ttl