Class: Aws::Batch::Types::ServiceJobTimeout
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::ServiceJobTimeout
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
The timeout configuration for service jobs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attempt_duration_seconds ⇒ Integer
The maximum duration in seconds that a service job attempt can run.
Instance Attribute Details
#attempt_duration_seconds ⇒ Integer
The maximum duration in seconds that a service job attempt can run. After this time is reached, Batch terminates the service job attempt.
8405 8406 8407 8408 8409 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 8405 class ServiceJobTimeout < Struct.new( :attempt_duration_seconds) SENSITIVE = [] include Aws::Structure end |