{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-pipes/refs/heads/main/json-schema/amazon-eventbridge-pipes-batch-retry-strategy-schema.json", "title": "BatchRetryStrategy", "description": "The retry strategy that's associated with a job. For more information, see Automated job retries in the Batch User Guide.", "type": "object", "properties": { "Attempts": { "allOf": [ { "$ref": "#/components/schemas/BatchRetryAttempts" }, { "description": "The number of times to move a job to the RUNNABLE status. If the value of attempts is greater than one, the job is retried on failure the same number of attempts as the value." } ] } } }