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

DescribeSnapshotsRequest

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

Contains the inputs for the "DescribeSnapshots" operation.

interface DescribeSnapshotsRequest {
DirectoryId?: string | null;
Limit?: number | null;
NextToken?: string | null;
SnapshotIds?: string[] | null;
}

§Properties

§
DirectoryId?: string | null
[src]

The identifier of the directory for which to retrieve snapshot information.

§
Limit?: number | null
[src]

The maximum number of objects to return.

§
NextToken?: string | null
[src]

The DescribeSnapshotsResult.NextToken value from a previous call to "DescribeSnapshots". Pass null if this is the first call.

§
SnapshotIds?: string[] | null
[src]

A list of identifiers of the snapshots to obtain the information for. If this member is null or empty, all snapshots are returned using the Limit and NextToken members.