Class: Aws::DynamoDBStreams::Types::SequenceNumberRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDBStreams::Types::SequenceNumberRange
- Defined in:
- gems/aws-sdk-dynamodbstreams/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.
563 564 565 566 567 568 |
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 563 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.
563 564 565 566 567 568 |
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 563 class SequenceNumberRange < Struct.new( :starting_sequence_number, :ending_sequence_number) SENSITIVE = [] include Aws::Structure end |