Class: Aws::Batch::Types::UpdatePolicy

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb

Overview

Specifies the infrastructure update policy for the Amazon EC2 compute environment. For more information about infrastructure updates, see Updating compute environments in the Batch User Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#job_execution_timeout_minutesInteger

Specifies the job timeout (in minutes) when the compute environment infrastructure is updated. The default value is 30.

Returns:

  • (Integer)


10174
10175
10176
10177
10178
10179
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 10174

class UpdatePolicy < Struct.new(
  :terminate_jobs_on_update,
  :job_execution_timeout_minutes)
  SENSITIVE = []
  include Aws::Structure
end

#terminate_jobs_on_updateBoolean

Specifies whether jobs are automatically terminated when the compute environment infrastructure is updated. The default value is false.

Returns:

  • (Boolean)


10174
10175
10176
10177
10178
10179
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 10174

class UpdatePolicy < Struct.new(
  :terminate_jobs_on_update,
  :job_execution_timeout_minutes)
  SENSITIVE = []
  include Aws::Structure
end