Module Values.GetShardIteratorInputSource

Represents the input for GetShardIterator.

Sourcetype nonrec t = {
  1. streamName : StreamName.t option;
    (*

    The name of the Amazon Kinesis data stream.

    *)
  2. shardId : ShardId.t;
    (*

    The shard ID of the Kinesis Data Streams shard to get the iterator for.

    *)
  3. shardIteratorType : ShardIteratorType.t;
    (*

    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.

    *)
  4. startingSequenceNumber : SequenceNumber.t option;
    (*

    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.

    *)
  5. timestamp : Timestamp.t option;
    (*

    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).

    *)
  6. streamARN : StreamARN.t option;
    (*

    The ARN of the stream.

    *)
  7. streamId : StreamId.t option;
    (*

    Not Implemented. Reserved for future use.

    *)
}
Sourceval context_ : string
Sourceval make : ?streamName:??? -> ?startingSequenceNumber:??? -> ?timestamp:??? -> ?streamARN:??? -> ?streamId:??? -> shardId:ShardId.t -> shardIteratorType:ShardIteratorType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of StreamName.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t