Interface CfnSchedulePropsMixin.RetryPolicyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSchedulePropsMixin.RetryPolicyProperty.Jsii$Proxy
- Enclosing class:
CfnSchedulePropsMixin
@Stability(Stable)
public static interface CfnSchedulePropsMixin.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.cfnpropertymixins.services.scheduler.*;
RetryPolicyProperty retryPolicyProperty = RetryPolicyProperty.builder()
.maximumEventAgeInSeconds(123)
.maximumRetryAttempts(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSchedulePropsMixin.RetryPolicyPropertystatic final classAn implementation forCfnSchedulePropsMixin.RetryPolicyProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaximumEventAgeInSeconds
The maximum amount of time, in seconds, to continue to make retry attempts.- See Also:
-
getMaximumRetryAttempts
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
MaximumEventAgeInSecondsis reached.- See Also:
-
builder
-