Class: Aws::IoT::Types::AwsJobPresignedUrlConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::AwsJobPresignedUrlConfig
- Includes:
- Structure
- Defined in:
- 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.
1307 1308 1309 1310 1311 |
# File 'lib/aws-sdk-iot/types.rb', line 1307 class AwsJobPresignedUrlConfig < Struct.new( :expires_in_sec) SENSITIVE = [] include Aws::Structure end |