Class: Aws::DynamoDBStreams::Types::SequenceNumberRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDBStreams::Types::SequenceNumberRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodbstreams/types.rb
Overview
The beginning and ending sequence numbers for the stream records contained within a shard.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ending_sequence_number ⇒ String
The last sequence number for the stream records contained within a shard.
-
#starting_sequence_number ⇒ String
The first sequence number for the stream records contained within a shard.
Instance Attribute Details
#ending_sequence_number ⇒ String
The last sequence number for the stream records contained within a shard. String contains numeric characters only.
557 558 559 560 561 562 |
# File 'lib/aws-sdk-dynamodbstreams/types.rb', line 557 class SequenceNumberRange < Struct.new( :starting_sequence_number, :ending_sequence_number) SENSITIVE = [] include Aws::Structure end |
#starting_sequence_number ⇒ String
The first sequence number for the stream records contained within a shard. String contains numeric characters only.
557 558 559 560 561 562 |
# File 'lib/aws-sdk-dynamodbstreams/types.rb', line 557 class SequenceNumberRange < Struct.new( :starting_sequence_number, :ending_sequence_number) SENSITIVE = [] include Aws::Structure end |