Class: Aws::EBS::Types::ListChangedBlocksRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ebs/lib/aws-sdk-ebs/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#first_snapshot_idString

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.

Returns:

  • (String)


293
294
295
296
297
298
299
300
301
# File 'gems/aws-sdk-ebs/lib/aws-sdk-ebs/types.rb', line 293

class ListChangedBlocksRequest < Struct.new(
  :first_snapshot_id,
  :second_snapshot_id,
  :next_token,
  :max_results,
  :starting_block_index)
  SENSITIVE = []
  include Aws::Structure
end

#max_resultsInteger

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.

Returns:

  • (Integer)


293
294
295
296
297
298
299
300
301
# File 'gems/aws-sdk-ebs/lib/aws-sdk-ebs/types.rb', line 293

class ListChangedBlocksRequest < Struct.new(
  :first_snapshot_id,
  :second_snapshot_id,
  :next_token,
  :max_results,
  :starting_block_index)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

The token to request the next page of results.

If you specify NextToken, then StartingBlockIndex is ignored.

Returns:

  • (String)


293
294
295
296
297
298
299
300
301
# File 'gems/aws-sdk-ebs/lib/aws-sdk-ebs/types.rb', line 293

class ListChangedBlocksRequest < Struct.new(
  :first_snapshot_id,
  :second_snapshot_id,
  :next_token,
  :max_results,
  :starting_block_index)
  SENSITIVE = []
  include Aws::Structure
end

#second_snapshot_idString

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.

Returns:

  • (String)


293
294
295
296
297
298
299
300
301
# File 'gems/aws-sdk-ebs/lib/aws-sdk-ebs/types.rb', line 293

class ListChangedBlocksRequest < Struct.new(
  :first_snapshot_id,
  :second_snapshot_id,
  :next_token,
  :max_results,
  :starting_block_index)
  SENSITIVE = []
  include Aws::Structure
end

#starting_block_indexInteger

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.

Returns:

  • (Integer)


293
294
295
296
297
298
299
300
301
# File 'gems/aws-sdk-ebs/lib/aws-sdk-ebs/types.rb', line 293

class ListChangedBlocksRequest < Struct.new(
  :first_snapshot_id,
  :second_snapshot_id,
  :next_token,
  :max_results,
  :starting_block_index)
  SENSITIVE = []
  include Aws::Structure
end