aws-cdk-lib.aws_codedeploy.CfnDeploymentGroup.AutoRollbackConfigurationProperty

interface AutoRollbackConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.CodeDeploy.CfnDeploymentGroup.AutoRollbackConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodedeploy#CfnDeploymentGroup_AutoRollbackConfigurationProperty
Javasoftware.amazon.awscdk.services.codedeploy.CfnDeploymentGroup.AutoRollbackConfigurationProperty
Pythonaws_cdk.aws_codedeploy.CfnDeploymentGroup.AutoRollbackConfigurationProperty
TypeScript aws-cdk-lib » aws_codedeploy » CfnDeploymentGroup » AutoRollbackConfigurationProperty

The AutoRollbackConfiguration property type configures automatic rollback for an AWS CodeDeploy deployment group when a deployment is not completed successfully.

For more information, see Automatic Rollbacks in the AWS CodeDeploy User Guide .

AutoRollbackConfiguration is a property of the DeploymentGroup resource.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codedeploy as codedeploy } from 'aws-cdk-lib';
const autoRollbackConfigurationProperty: codedeploy.CfnDeploymentGroup.AutoRollbackConfigurationProperty = {
  enabled: false,
  events: ['events'],
};

Properties

NameTypeDescription
enabled?boolean | IResolvableIndicates whether a defined automatic rollback configuration is currently enabled.
events?string[]The event type or types that trigger a rollback.

enabled?

Type: boolean | IResolvable (optional)

Indicates whether a defined automatic rollback configuration is currently enabled.


events?

Type: string[] (optional)

The event type or types that trigger a rollback.

Valid values are DEPLOYMENT_FAILURE , DEPLOYMENT_STOP_ON_ALARM , or DEPLOYMENT_STOP_ON_REQUEST .