Class: Aws::Rekognition::Types::StreamProcessingStopSelector

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

Overview

Specifies when to stop processing the stream. You can specify a maximum amount of time to process the video.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_duration_in_secondsInteger

Specifies the maximum amount of time in seconds that you want the stream to be processed. The largest amount of time is 2 minutes. The default is 10 seconds.

Returns:

  • (Integer)


7557
7558
7559
7560
7561
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 7557

class StreamProcessingStopSelector < Struct.new(
  :max_duration_in_seconds)
  SENSITIVE = []
  include Aws::Structure
end