ebs_list_changed_blocks: Returns information about the blocks that are different...

View source: R/ebs_operations.R

ebs_list_changed_blocksR Documentation

Returns information about the blocks that are different between two Amazon Elastic Block Store snapshots of the same volume/snapshot lineage

Description

Returns information about the blocks that are different between two Amazon Elastic Block Store snapshots of the same volume/snapshot lineage.

See https://www.paws-r-sdk.com/docs/ebs_list_changed_blocks/ for full documentation.

Usage

ebs_list_changed_blocks(
  FirstSnapshotId = NULL,
  SecondSnapshotId,
  NextToken = NULL,
  MaxResults = NULL,
  StartingBlockIndex = NULL
)

Arguments

FirstSnapshotId

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

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

SecondSnapshotId

[required] The ID of the second snapshot to use for the comparison.

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

NextToken

The token to request the next page of results.

If you specify NextToken, then StartingBlockIndex is ignored.

MaxResults

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.

StartingBlockIndex

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.

If you specify NextToken, then StartingBlockIndex is ignored.


paws.storage documentation built on Sept. 12, 2023, 1:23 a.m.