Interface CfnSchedule.RetryPolicyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSchedule.RetryPolicyProperty.Jsii$Proxy
Enclosing class:
CfnSchedule

@Stability(Stable) public static interface CfnSchedule.RetryPolicyProperty extends software.amazon.jsii.JsiiSerializable
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.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.scheduler.*;
 RetryPolicyProperty retryPolicyProperty = RetryPolicyProperty.builder()
         .maximumEventAgeInSeconds(123)
         .maximumRetryAttempts(123)
         .build();
 

See Also: