interface RetryConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CodePipeline.CfnPipeline.RetryConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline#CfnPipeline_RetryConfigurationProperty |
Java | software.amazon.awscdk.services.codepipeline.CfnPipeline.RetryConfigurationProperty |
Python | aws_cdk.aws_codepipeline.CfnPipeline.RetryConfigurationProperty |
TypeScript | aws-cdk-lib » aws_codepipeline » CfnPipeline » RetryConfigurationProperty |
The retry configuration specifies automatic retry for a failed stage, along with the configured retry mode.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codepipeline as codepipeline } from 'aws-cdk-lib';
const retryConfigurationProperty: codepipeline.CfnPipeline.RetryConfigurationProperty = {
retryMode: 'retryMode',
};
Properties
Name | Type | Description |
---|---|---|
retry | string | The method that you want to configure for automatic stage retry on stage failure. |
retryMode?
Type:
string
(optional)
The method that you want to configure for automatic stage retry on stage failure.
You can specify to retry only failed action in the stage or all actions in the stage.