Class: Aws::Batch::Types::JobTimeout
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::JobTimeout
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
Note:
When making an API call, you may pass JobTimeout data as a hash:
{
attempt_duration_seconds: 1,
}
An object representing a job timeout configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attempt_duration_seconds ⇒ Integer
The time duration in seconds (measured from the job attempt's
startedAt
timestamp) after which Batch terminates your jobs if they have not finished.
Instance Attribute Details
#attempt_duration_seconds ⇒ Integer
The time duration in seconds (measured from the job attempt's
startedAt
timestamp) after which Batch terminates your jobs if
they have not finished. The minimum value for the timeout is 60
seconds.
3800 3801 3802 3803 3804 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 3800 class JobTimeout < Struct.new( :attempt_duration_seconds) SENSITIVE = [] include Aws::Structure end |