You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Kinesis::Types::GetShardIteratorInputWhen passing GetShardIteratorInput as input to an Aws::Client method, you can use a vanilla Hash:
{
stream_name: "StreamName", shard_id: "ShardId", shard_iterator_type: "AT_SEQUENCE_NUMBER", starting_sequence_number: "SequenceNumber",
timestamp: Time.now,
}
Represents the input for GetShardIterator
.
The shard ID of the Kinesis Data Streams shard to get the iterator for.
Determines how the shard iterator is used to start reading data records from the shard.
The sequence number of the data record in the shard from which to start reading.
The name of the Amazon Kinesis data stream.
The time stamp of the data record from which to start reading.
The shard ID of the Kinesis Data Streams shard to get the iterator for.
#shard_iterator_type ⇒ StringDetermines 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.
Possible values:
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.
#stream_name ⇒ StringThe name of the Amazon Kinesis data stream.
#timestamp ⇒ TimeThe 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).
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4