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

ListResourceRecordSetsResponse

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

A complex type that contains list information for the resource record set.

interface ListResourceRecordSetsResponse {
IsTruncated: boolean;
MaxItems: string;
NextRecordIdentifier?: string | null;
NextRecordName?: string | null;
NextRecordType?: RRType | null;
ResourceRecordSets: ResourceRecordSet[];
}

§Properties

§
IsTruncated: boolean
[src]

A flag that indicates whether more resource record sets remain to be listed. If your results were truncated, you can make a follow-up pagination request by using the NextRecordName element.

§
MaxItems: string
[src]

The maximum number of records you requested.

§
NextRecordIdentifier?: string | null
[src]

Resource record sets that have a routing policy other than simple: If results were truncated for a given DNS name and type, the value of SetIdentifier for the next resource record set that has the current DNS name and type.

For information about routing policies, see Choosing a Routing Policy in the Amazon Route 53 Developer Guide.

§
NextRecordName?: string | null
[src]

If the results were truncated, the name of the next record in the list.

This element is present only if IsTruncated is true.

§
NextRecordType?: RRType | null
[src]

If the results were truncated, the type of the next record in the list.

This element is present only if IsTruncated is true.

§
ResourceRecordSets: ResourceRecordSet[]
[src]

Information about multiple resource record sets.