Class: Aws::Batch::Types::ServiceJobPreemptionConfiguration

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

Overview

Specifies the service job behavior when preempted.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#preemption_retries_before_terminationInteger

The number of times a service job can be retried after it is preempted. A job will be terminated when preemption retries have been exhausted. If this field is unset, preempted jobs will be requeued an unlimited number of times.

Returns:

  • (Integer)


9394
9395
9396
9397
9398
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 9394

class ServiceJobPreemptionConfiguration < Struct.new(
  :preemption_retries_before_termination)
  SENSITIVE = []
  include Aws::Structure
end