Class: Aws::DynamoDBStreams::Types::Shard
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::DynamoDBStreams::Types::Shard
 
- 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
- 
  
    
      #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.
| 586 587 588 589 590 591 592 | # File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 586 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.
| 586 587 588 589 590 591 592 | # File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 586 class Shard < Struct.new( :shard_id, :sequence_number_range, :parent_shard_id) SENSITIVE = [] include Aws::Structure end | 
#shard_id ⇒ String
The system-generated identifier for this shard.
| 586 587 588 589 590 591 592 | # File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 586 class Shard < Struct.new( :shard_id, :sequence_number_range, :parent_shard_id) SENSITIVE = [] include Aws::Structure end |