Class: Aws::Rekognition::Types::StreamProcessingStopSelector
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::StreamProcessingStopSelector
- 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
-
#max_duration_in_seconds ⇒ Integer
Specifies the maximum amount of time in seconds that you want the stream to be processed.
Instance Attribute Details
#max_duration_in_seconds ⇒ Integer
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.
5974 5975 5976 5977 5978 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5974 class StreamProcessingStopSelector < Struct.new( :max_duration_in_seconds) SENSITIVE = [] include Aws::Structure end |