Class: Aws::DynamoDBStreams::Types::Shard

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

Overview

A uniquely identified group of stream records within a stream.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#parent_shard_idString

The shard ID of the current shard's parent.

Returns:

  • (String)


580
581
582
583
584
585
586
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 580

class Shard < Struct.new(
  :shard_id,
  :sequence_number_range,
  :parent_shard_id)
  SENSITIVE = []
  include Aws::Structure
end

#sequence_number_rangeTypes::SequenceNumberRange

The range of possible sequence numbers for the shard.



580
581
582
583
584
585
586
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 580

class Shard < Struct.new(
  :shard_id,
  :sequence_number_range,
  :parent_shard_id)
  SENSITIVE = []
  include Aws::Structure
end

#shard_idString

The system-generated identifier for this shard.

Returns:

  • (String)


580
581
582
583
584
585
586
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 580

class Shard < Struct.new(
  :shard_id,
  :sequence_number_range,
  :parent_shard_id)
  SENSITIVE = []
  include Aws::Structure
end