Class: Aws::Batch::Types::UpdatePolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::UpdatePolicy
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-batch/types.rb
Overview
Specifies the infrastructure update policy for the compute environment. For more information about infrastructure updates, see
- Updating compute environments][1
-
in the *Batch User Guide*.
[1]: docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_execution_timeout_minutes ⇒ Integer
Specifies the job timeout (in minutes) when the compute environment infrastructure is updated.
-
#terminate_jobs_on_update ⇒ Boolean
Specifies whether jobs are automatically terminated when the computer environment infrastructure is updated.
Instance Attribute Details
#job_execution_timeout_minutes ⇒ Integer
Specifies the job timeout (in minutes) when the compute environment infrastructure is updated. The default value is 30.
8501 8502 8503 8504 8505 8506 |
# File 'lib/aws-sdk-batch/types.rb', line 8501 class UpdatePolicy < Struct.new( :terminate_jobs_on_update, :job_execution_timeout_minutes) SENSITIVE = [] include Aws::Structure end |
#terminate_jobs_on_update ⇒ Boolean
Specifies whether jobs are automatically terminated when the computer environment infrastructure is updated. The default value is ‘false`.
8501 8502 8503 8504 8505 8506 |
# File 'lib/aws-sdk-batch/types.rb', line 8501 class UpdatePolicy < Struct.new( :terminate_jobs_on_update, :job_execution_timeout_minutes) SENSITIVE = [] include Aws::Structure end |