Class: Aws::Batch::Types::RetryStrategy

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

Overview

The retry strategy that's associated with a job. For more information, see Automated job retries in the Batch User Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#attemptsInteger

The number of times to move a job to the RUNNABLE status. You can specify between 1 and 10 attempts. If the value of attempts is greater than one, the job is retried on failure the same number of attempts as the value.

Returns:

  • (Integer)


6486
6487
6488
6489
6490
6491
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6486

class RetryStrategy < Struct.new(
  :attempts,
  :evaluate_on_exit)
  SENSITIVE = []
  include Aws::Structure
end

#evaluate_on_exitArray<Types::EvaluateOnExit>

Array of up to 5 objects that specify the conditions where jobs are retried or failed. If this parameter is specified, then the attempts parameter must also be specified. If none of the listed conditions match, then the job is retried.

Returns:



6486
6487
6488
6489
6490
6491
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6486

class RetryStrategy < Struct.new(
  :attempts,
  :evaluate_on_exit)
  SENSITIVE = []
  include Aws::Structure
end