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

ListSnapshotBlocksRequest

import type { ListSnapshotBlocksRequest } from "https://aws-api.deno.dev/v0.4/services/ebs.ts?docs=full";
interface ListSnapshotBlocksRequest {
MaxResults?: number | null;
NextToken?: string | null;
SnapshotId: string;
StartingBlockIndex?: number | null;
}

§Properties

§
MaxResults?: number | null
[src]

The maximum number of blocks to be returned by the request.

Even if additional blocks can be retrieved from the snapshot, the request can return less blocks than MaxResults or an empty array of blocks.

To retrieve the next set of blocks from the snapshot, make another request with the returned NextToken value. The value of NextToken is null when there are no more blocks to return.

§
NextToken?: string | null
[src]

The token to request the next page of results.

If you specify NextToken, then StartingBlockIndex is ignored.

§
SnapshotId: string
[src]

The ID of the snapshot from which to get block indexes and block tokens.

§
StartingBlockIndex?: number | null
[src]

The block index from which the list should start. The list in the response will start from this block index or the next valid block index in the snapshot.

If you specify NextToken, then StartingBlockIndex is ignored.