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

HostedZone

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

A complex type that contains general information about the hosted zone.

interface HostedZone {
CallerReference: string;
Config?: HostedZoneConfig | null;
Id: string;
LinkedService?: LinkedService | null;
Name: string;
ResourceRecordSetCount?: number | null;
}

§Properties

§
CallerReference: string
[src]

The value that you specified for CallerReference when you created the hosted zone.

§
Config?: HostedZoneConfig | null
[src]

A complex type that includes the Comment and PrivateZone elements. If you omitted the HostedZoneConfig and Comment elements from the request, the Config and Comment elements don't appear in the response.

§
Id: string
[src]

The ID that Amazon Route 53 assigned to the hosted zone when you created it.

§
LinkedService?: LinkedService | null
[src]

If the hosted zone was created by another service, the service that created the hosted zone. When a hosted zone is created by another service, you can't edit or delete it using Route 53.

§
Name: string
[src]

The name of the domain. For public hosted zones, this is the name that you have registered with your DNS registrar.

For information about how to specify characters other than a-z, 0-9, and - (hyphen) and how to specify internationalized domain names, see CreateHostedZone.

§
ResourceRecordSetCount?: number | null
[src]

The number of resource record sets in the hosted zone.