Show / Hide Table of Contents

Class CfnRule.RetryPolicyProperty

A RetryPolicy object that includes information about the retry policy settings.

Inheritance
object
CfnRule.RetryPolicyProperty
Implements
CfnRule.IRetryPolicyProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

Constructors

RetryPolicyProperty()

A RetryPolicy object that includes information about the retry policy settings.

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

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
             };

Properties

MaximumEventAgeInSeconds

The maximum amount of time, in seconds, to continue to make retry attempts.

public double? MaximumEventAgeInSeconds { get; set; }
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.

public double? MaximumRetryAttempts { get; set; }
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

Implements

CfnRule.IRetryPolicyProperty
Back to top Generated by DocFX