Class CfnRule.RetryPolicyProperty
A RetryPolicy object that includes information about the retry policy settings.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRule.RetryPolicyProperty : CfnRule.IRetryPolicyProperty
Syntax (vb)
Public Class CfnRule.RetryPolicyProperty Implements CfnRule.IRetryPolicyProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Events;
var retryPolicyProperty = new RetryPolicyProperty {
MaximumEventAgeInSeconds = 123,
MaximumRetryAttempts = 123
};
Synopsis
Constructors
| RetryPolicyProperty() | A |
Properties
| MaximumEventAgeInSeconds | The maximum amount of time, in seconds, to continue to make retry attempts. |
| MaximumRetryAttempts | The maximum number of retry attempts to make before the request fails. |
Constructors
RetryPolicyProperty()
A RetryPolicy object that includes information about the retry policy settings.
public RetryPolicyProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Events;
var retryPolicyProperty = new RetryPolicyProperty {
MaximumEventAgeInSeconds = 123,
MaximumRetryAttempts = 123
};
Properties
MaximumEventAgeInSeconds
The maximum amount of time, in seconds, to continue to make retry attempts.
public double? MaximumEventAgeInSeconds { get; set; }
Property Value
Remarks
MaximumRetryAttempts
The maximum number of retry attempts to make before the request fails.
public double? MaximumRetryAttempts { get; set; }
Property Value
Remarks
Retry attempts continue until either the maximum number of attempts is made or until the duration of the MaximumEventAgeInSeconds is met.