Class: Aws::EventBridge::Types::BatchRetryStrategy
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::BatchRetryStrategy
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eventbridge/types.rb
Overview
The retry strategy to use for failed jobs, if the target is an Batch job. If you specify a retry strategy here, it overrides the retry strategy defined in the job definition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attempts ⇒ Integer
The number of times to attempt to retry, if the job fails.
Instance Attribute Details
#attempts ⇒ Integer
The number of times to attempt to retry, if the job fails. Valid values are 1–10.
255 256 257 258 259 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 255 class BatchRetryStrategy < Struct.new( :attempts) SENSITIVE = [] include Aws::Structure end |