Class: Aws::DynamoDBStreams::Types::Shard
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDBStreams::Types::Shard
- Includes:
- Structure
- Defined in:
- 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
-
#parent_shard_id ⇒ String
The shard ID of the current shard’s parent.
-
#sequence_number_range ⇒ Types::SequenceNumberRange
The range of possible sequence numbers for the shard.
-
#shard_id ⇒ String
The system-generated identifier for this shard.
Instance Attribute Details
#parent_shard_id ⇒ String
The shard ID of the current shard’s parent.
580 581 582 583 584 585 586 |
# File '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_range ⇒ Types::SequenceNumberRange
The range of possible sequence numbers for the shard.
580 581 582 583 584 585 586 |
# File '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 |