Values.KinesisVideoStreamStartSelectorSourceSpecifies the starting point in a Kinesis stream to start processing. You can use the producer timestamp or the fragment number. One of either producer timestamp or fragment number is required. If you use the producer timestamp, you must put the time in milliseconds. For more information about fragment numbers, see Fragment.
type nonrec t = {producerTimestamp : ULong.t option;The timestamp from the producer corresponding to the fragment, in milliseconds, expressed in unix time format.
*)fragmentNumber : KinesisVideoStreamFragmentNumber.t option;The unique identifier of the fragment. This value monotonically increases based on the ingestion order.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Long of ULong.t | `String of KinesisVideoStreamFragmentNumber.t ])
list ]