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.
1289 1290 1291 1292 1293 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 1289 class AwsJobPresignedUrlConfig < Struct.new( :expires_in_sec) SENSITIVE = [] include Aws::Structure end |