Class: Aws::GreengrassV2::Types::IoTJobTimeoutConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::IoTJobTimeoutConfig
- Defined in:
- gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb
Overview
Contains information about the timeout configuration for a job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#in_progress_timeout_in_minutes ⇒ Integer
The amount of time, in minutes, that devices have to complete the job.
Instance Attribute Details
#in_progress_timeout_in_minutes ⇒ Integer
The amount of time, in minutes, that devices have to complete the
job. The timer starts when the job status is set to IN_PROGRESS
.
If the job status doesn't change to a terminal state before the
time expires, then the job status is set to TIMED_OUT
.
The timeout interval must be between 1 minute and 7 days (10080 minutes).
2039 2040 2041 2042 2043 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2039 class IoTJobTimeoutConfig < Struct.new( :in_progress_timeout_in_minutes) SENSITIVE = [] include Aws::Structure end |