Class: Aws::Rekognition::Types::StartStreamProcessorRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::StartStreamProcessorRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the stream processor to start processing.
-
#start_selector ⇒ Types::StreamProcessingStartSelector
Specifies the starting point in the Kinesis stream to start processing.
-
#stop_selector ⇒ Types::StreamProcessingStopSelector
Specifies when to stop processing the stream.
Instance Attribute Details
#name ⇒ String
The name of the stream processor to start processing.
7440 7441 7442 7443 7444 7445 7446 |
# File 'lib/aws-sdk-rekognition/types.rb', line 7440 class StartStreamProcessorRequest < Struct.new( :name, :start_selector, :stop_selector) SENSITIVE = [] include Aws::Structure end |
#start_selector ⇒ Types::StreamProcessingStartSelector
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.
[1]: docs.aws.amazon.com/kinesisvideostreams/latest/dg/API_reader_Fragment.html
7440 7441 7442 7443 7444 7445 7446 |
# File 'lib/aws-sdk-rekognition/types.rb', line 7440 class StartStreamProcessorRequest < Struct.new( :name, :start_selector, :stop_selector) SENSITIVE = [] include Aws::Structure end |
#stop_selector ⇒ Types::StreamProcessingStopSelector
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.
7440 7441 7442 7443 7444 7445 7446 |
# File 'lib/aws-sdk-rekognition/types.rb', line 7440 class StartStreamProcessorRequest < Struct.new( :name, :start_selector, :stop_selector) SENSITIVE = [] include Aws::Structure end |