Show / Hide Table of Contents

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 CfnRule.IRetryPolicyProperty
Syntax (vb)
Public Interface CfnRule.IRetryPolicyProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-retrypolicy.html

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.

double? MaximumEventAgeInSeconds { get; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-retrypolicy.html#cfn-events-rule-retrypolicy-maximumeventageinseconds

MaximumRetryAttempts

The maximum number of retry attempts to make before the request fails.

double? MaximumRetryAttempts { get; }
Property Value

double?

Remarks

Retry attempts continue until either the maximum number of attempts is made or until the duration of the MaximumEventAgeInSeconds is met.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-retrypolicy.html#cfn-events-rule-retrypolicy-maximumretryattempts

Back to top Generated by DocFX