Class: Aws::Rekognition::Types::StartStreamProcessorRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rekognition/types.rb

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the stream processor to start processing.

Returns:

  • (String)


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_selectorTypes::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_selectorTypes::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