Class: Aws::IoT::Types::AwsJobPresignedUrlConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::AwsJobPresignedUrlConfig
 
 
- Defined in:
 - gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
 
Overview
Configuration information for pre-signed URLs. Valid when protocols
contains HTTP.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #expires_in_sec  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
How long (in seconds) pre-signed URLs are valid.
 
Instance Attribute Details
#expires_in_sec ⇒ Integer
How long (in seconds) pre-signed URLs are valid. Valid values are 60 - 3600, the default value is 1800 seconds. Pre-signed URLs are generated when a request for the job document is received.
      1313 1314 1315 1316 1317  | 
    
      # File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 1313 class AwsJobPresignedUrlConfig < Struct.new( :expires_in_sec) SENSITIVE = [] include Aws::Structure end  |