Values.StartStreamProcessorRequestSourceStarts processing a stream processor. You create a stream processor by calling CreateStreamProcessor. To tell StartStreamProcessor which stream processor to start, use the value of the Name field specified in the call to CreateStreamProcessor. If you are using a label detection stream processor to detect labels, you need to provide a Start selector and a Stop selector to determine the length of the stream processing time.
type nonrec t = {name : StreamProcessorName.t;The name of the stream processor to start processing.
*)startSelector : StreamProcessingStartSelector.t option;Specifies the starting point in the Kinesis stream to start processing. You can use the producer timestamp or the fragment number. If you use the producer timestamp, you must put the time in milliseconds. For more information about fragment numbers, see Fragment. This is a required parameter for label detection stream processors and should not be used to start a face search stream processor.
*)stopSelector : StreamProcessingStopSelector.t option;Specifies when to stop processing the stream. You can specify a maximum amount of time to process the video. This is a required parameter for label detection stream processors and should not be used to start a face search stream processor.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `String of StreamProcessorName.t
| `Structure of
(string
* [> `Long of MaxDurationInSecondsULong.t
| `Structure of
(string
* [> `Long of ULong.t
| `String of KinesisVideoStreamFragmentNumber.t ])
list ])
list ])
list ]