Class: Aws::Kinesis::Types::GetShardIteratorInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::GetShardIteratorInput
- Defined in:
- gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb
Overview
Represents the input for GetShardIterator
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#shard_id ⇒ String
The shard ID of the Kinesis Data Streams shard to get the iterator for.
-
#shard_iterator_type ⇒ String
Determines how the shard iterator is used to start reading data records from the shard.
-
#starting_sequence_number ⇒ String
The sequence number of the data record in the shard from which to start reading.
-
#stream_arn ⇒ String
The ARN of the stream.
-
#stream_name ⇒ String
The name of the Amazon Kinesis data stream.
-
#timestamp ⇒ Time
The time stamp of the data record from which to start reading.
Instance Attribute Details
#shard_id ⇒ String
The shard ID of the Kinesis Data Streams shard to get the iterator for.
795 796 797 798 799 800 801 802 803 804 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 795 class GetShardIteratorInput < Struct.new( :stream_name, :shard_id, :shard_iterator_type, :starting_sequence_number, :timestamp, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#shard_iterator_type ⇒ String
Determines how the shard iterator is used to start reading data records from the shard.
The following are the valid Amazon Kinesis shard iterator types:
AT_SEQUENCE_NUMBER - Start reading from the position denoted by a specific sequence number, provided in the value
StartingSequenceNumber
.AFTER_SEQUENCE_NUMBER - Start reading right after the position denoted by a specific sequence number, provided in the value
StartingSequenceNumber
.AT_TIMESTAMP - Start reading from the position denoted by a specific time stamp, provided in the value
Timestamp
.TRIM_HORIZON - Start reading at the last untrimmed record in the shard in the system, which is the oldest data record in the shard.
LATEST - Start reading just after the most recent record in the shard, so that you always read the most recent data in the shard.
795 796 797 798 799 800 801 802 803 804 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 795 class GetShardIteratorInput < Struct.new( :stream_name, :shard_id, :shard_iterator_type, :starting_sequence_number, :timestamp, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#starting_sequence_number ⇒ String
The sequence number of the data record in the shard from which to start reading. Used with shard iterator type AT_SEQUENCE_NUMBER and AFTER_SEQUENCE_NUMBER.
795 796 797 798 799 800 801 802 803 804 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 795 class GetShardIteratorInput < Struct.new( :stream_name, :shard_id, :shard_iterator_type, :starting_sequence_number, :timestamp, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#stream_arn ⇒ String
The ARN of the stream.
795 796 797 798 799 800 801 802 803 804 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 795 class GetShardIteratorInput < Struct.new( :stream_name, :shard_id, :shard_iterator_type, :starting_sequence_number, :timestamp, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#stream_name ⇒ String
The name of the Amazon Kinesis data stream.
795 796 797 798 799 800 801 802 803 804 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 795 class GetShardIteratorInput < Struct.new( :stream_name, :shard_id, :shard_iterator_type, :starting_sequence_number, :timestamp, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Time
The time stamp of the data record from which to start reading. Used
with shard iterator type AT_TIMESTAMP. A time stamp is the Unix
epoch date with precision in milliseconds. For example,
2016-04-04T19:58:46.480-00:00
or 1459799926.480
. If a record
with this exact time stamp does not exist, the iterator returned is
for the next (later) record. If the time stamp is older than the
current trim horizon, the iterator returned is for the oldest
untrimmed data record (TRIM_HORIZON).
795 796 797 798 799 800 801 802 803 804 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 795 class GetShardIteratorInput < Struct.new( :stream_name, :shard_id, :shard_iterator_type, :starting_sequence_number, :timestamp, :stream_arn) SENSITIVE = [] include Aws::Structure end |