Show / Hide Table of Contents

Class CfnPipePropsMixin.BatchRetryStrategyProperty

The retry strategy that's associated with a job.

Inheritance
object
CfnPipePropsMixin.BatchRetryStrategyProperty
Implements
CfnPipePropsMixin.IBatchRetryStrategyProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnPipePropsMixin.BatchRetryStrategyProperty : CfnPipePropsMixin.IBatchRetryStrategyProperty
Syntax (vb)
Public Class CfnPipePropsMixin.BatchRetryStrategyProperty Implements CfnPipePropsMixin.IBatchRetryStrategyProperty
Remarks

For more information, see Automated job retries in the AWS Batch User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-batchretrystrategy.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.Mixins.Preview.AWS.Pipes.Mixins;

             var batchRetryStrategyProperty = new BatchRetryStrategyProperty {
                 Attempts = 123
             };

Synopsis

Constructors

BatchRetryStrategyProperty()

The retry strategy that's associated with a job.

Properties

Attempts

The number of times to move a job to the RUNNABLE status.

Constructors

BatchRetryStrategyProperty()

The retry strategy that's associated with a job.

public BatchRetryStrategyProperty()
Remarks

For more information, see Automated job retries in the AWS Batch User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-batchretrystrategy.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.Mixins.Preview.AWS.Pipes.Mixins;

             var batchRetryStrategyProperty = new BatchRetryStrategyProperty {
                 Attempts = 123
             };

Properties

Attempts

The number of times to move a job to the RUNNABLE status.

public double? Attempts { get; set; }
Property Value

double?

Remarks

If the value of attempts is greater than one, the job is retried on failure the same number of attempts as the value.

Default: - 0

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-batchretrystrategy.html#cfn-pipes-pipe-batchretrystrategy-attempts

Implements

CfnPipePropsMixin.IBatchRetryStrategyProperty
Back to top Generated by DocFX