Module Values.StartStreamProcessorRequestSource

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

Sourcetype nonrec t = {
  1. name : StreamProcessorName.t;
    (*

    The name of the stream processor to start processing.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?startSelector:??? -> ?stopSelector:??? -> name:StreamProcessorName.t -> unit -> t
Sourceval 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 ]
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