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

ListReusableDelegationSetsResponse

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

A complex type that contains information about the reusable delegation sets that are associated with the current Amazon Web Services account.

interface ListReusableDelegationSetsResponse {
DelegationSets: DelegationSet[];
IsTruncated: boolean;
Marker: string;
MaxItems: string;
NextMarker?: string | null;
}

§Properties

§
DelegationSets: DelegationSet[]
[src]

A complex type that contains one DelegationSet element for each reusable delegation set that was created by the current Amazon Web Services account.

§
IsTruncated: boolean
[src]

A flag that indicates whether there are more reusable delegation sets to be listed.

§
Marker: string
[src]

For the second and subsequent calls to ListReusableDelegationSets, Marker is the value that you specified for the marker parameter in the request that produced the current response.

§
MaxItems: string
[src]

The value that you specified for the maxitems parameter in the call to ListReusableDelegationSets that produced the current response.

§
NextMarker?: string | null
[src]

If IsTruncated is true, the value of NextMarker identifies the next reusable delegation set that Amazon Route 53 will return if you submit another ListReusableDelegationSets request and specify the value of NextMarker in the marker parameter.