AWS::Scheduler::Schedule RetryPolicy
A RetryPolicy
object that includes information about the retry policy settings, including the maximum age of an event, and the maximum number of times EventBridge Scheduler will try to deliver the event to a target.
Syntax
To declare this entity in your Amazon CloudFormation template, use the following syntax:
JSON
{ "MaximumEventAgeInSeconds" :
Double
, "MaximumRetryAttempts" :Double
}
YAML
MaximumEventAgeInSeconds:
Double
MaximumRetryAttempts:Double
Properties
MaximumEventAgeInSeconds
-
The maximum amount of time, in seconds, to continue to make retry attempts.
Required: No
Type: Double
Update requires: No interruption
MaximumRetryAttempts
-
The maximum number of retry attempts to make before the request fails. Retry attempts with exponential backoff continue until either the maximum number of attempts is made or until the duration of the
MaximumEventAgeInSeconds
is reached.Required: No
Type: Double
Update requires: No interruption