Interface CfnRule.IRetryPolicyProperty
A RetryPolicy
object that includes information about the retry policy settings.
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IRetryPolicyProperty
Syntax (vb)
Public Interface 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
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. |
Properties
MaximumEventAgeInSeconds
The maximum amount of time, in seconds, to continue to make retry attempts.
virtual Nullable<double> MaximumEventAgeInSeconds { get; }
Property Value
System.Nullable<System.Double>
Remarks
MaximumRetryAttempts
The maximum number of retry attempts to make before the request fails.
virtual Nullable<double> MaximumRetryAttempts { get; }
Property Value
System.Nullable<System.Double>
Remarks
Retry attempts continue until either the maximum number of attempts is made or until the duration of the MaximumEventAgeInSeconds
is met.