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.
      7634 7635 7636 7637 7638  | 
    
      # File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 7634 class StreamProcessingStopSelector < Struct.new( :max_duration_in_seconds) SENSITIVE = [] include Aws::Structure end  |