Class: Aws::Rekognition::Types::StreamProcessingStopSelector
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::StreamProcessingStopSelector
- Includes:
- Structure
- Defined in:
- 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.
7582 7583 7584 7585 7586 |
# File 'lib/aws-sdk-rekognition/types.rb', line 7582 class StreamProcessingStopSelector < Struct.new( :max_duration_in_seconds) SENSITIVE = [] include Aws::Structure end |