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

DistributionIdList

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

A list of distribution IDs.

interface DistributionIdList {
IsTruncated: boolean;
Items: string[];
Marker: string;
MaxItems: number;
NextMarker?: string | null;
Quantity: number;
}

§Properties

§
IsTruncated: boolean
[src]

A flag that indicates whether more distribution IDs remain to be listed. If your results were truncated, you can make a subsequent request using the Marker request field to retrieve more distribution IDs in the list.

§
Items: string[]
[src]

Contains the distribution IDs in the list.

§
Marker: string
[src]

The value provided in the Marker request field.

§
MaxItems: number
[src]

The maximum number of distribution IDs requested.

§
NextMarker?: string | null
[src]

Contains the value that you should use in the Marker field of a subsequent request to continue listing distribution IDs where you left off.

§
Quantity: number
[src]

The total number of distribution IDs returned in the response.