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

ResourceRecord

import type { ResourceRecord } from "https://aws-api.deno.dev/v0.3/services/acm.ts?docs=full";

Contains a DNS record value that you can use to validate ownership or control of a domain. This is used by the "DescribeCertificate" action.

interface ResourceRecord {
Name: string;
Type: RecordType;
Value: string;
}

§Properties

§
Name: string
[src]

The name of the DNS record to create in your domain. This is supplied by ACM.

§

The type of DNS record. Currently this can be CNAME.

§
Value: string
[src]

The value of the CNAME record to add to your DNS database. This is supplied by ACM.