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

ListChangedBlocksRequest

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

§Properties

§
FirstSnapshotId?: string | null
[src]

The ID of the first snapshot to use for the comparison.

! IMPORTANT: ! The FirstSnapshotID parameter must be specified with a SecondSnapshotId parameter; otherwise, an error occurs.

§
MaxResults?: number | null
[src]

The number of results to return.

§
NextToken?: string | null
[src]

The token to request the next page of results.

§
SecondSnapshotId: string
[src]

The ID of the second snapshot to use for the comparison.

! IMPORTANT: ! The SecondSnapshotId parameter must be specified with a FirstSnapshotID parameter; otherwise, an error occurs.

§
StartingBlockIndex?: number | null
[src]

The block index from which the comparison should start.

The list in the response will start from this block index or the next valid block index in the snapshots.