{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetShardIteratorInput", "title": "GetShardIteratorInput", "type": "object", "required": [ "ShardId", "ShardIteratorType" ], "properties": { "StreamName": { "allOf": [ { "$ref": "#/components/schemas/StreamName" }, { "description": "The name of the Amazon Kinesis data stream." } ] }, "ShardId": { "allOf": [ { "$ref": "#/components/schemas/ShardId" }, { "description": "The shard ID of the Kinesis Data Streams shard to get the iterator for." } ] }, "ShardIteratorType": { "allOf": [ { "$ref": "#/components/schemas/ShardIteratorType" }, { "description": "
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.
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)."
}
]
},
"StreamARN": {
"allOf": [
{
"$ref": "#/components/schemas/StreamARN"
},
{
"description": "The ARN of the stream."
}
]
}
},
"description": "Represents the input for GetShardIterator."
}