Interface CfnPipe.BatchRetryStrategyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipe.BatchRetryStrategyProperty.Jsii$Proxy
- Enclosing class:
CfnPipe
@Stability(Stable)
public static interface CfnPipe.BatchRetryStrategyProperty
extends software.amazon.jsii.JsiiSerializable
The retry strategy that's associated with a job.
For more information, see Automated job retries in the AWS Batch User Guide .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.pipes.*; BatchRetryStrategyProperty batchRetryStrategyProperty = BatchRetryStrategyProperty.builder() .attempts(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPipe.BatchRetryStrategyProperty
static final class
An implementation forCfnPipe.BatchRetryStrategyProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttempts
The number of times to move a job to theRUNNABLE
status.If the value of
attempts
is greater than one, the job is retried on failure the same number of attempts as the value. -
builder
-