This is the new AWS CloudFormation Template Reference Guide. Please update your bookmarks and links. For help getting started with CloudFormation, see the AWS CloudFormation User Guide.
AWS::CodeDeploy::DeploymentGroup Deployment
Deployment is a property of the DeploymentGroup resource that specifies an AWS CodeDeploy application
      revision to be deployed to instances in the deployment group. If you specify an application
      revision, your target revision is deployed as soon as the provisioning process is complete.
    
Syntax
To declare this entity in your AWS CloudFormation template, use the following syntax:
JSON
{ "Description" :String, "IgnoreApplicationStopFailures" :Boolean, "Revision" :RevisionLocation}
YAML
Description:StringIgnoreApplicationStopFailures:BooleanRevision:RevisionLocation
Properties
- Description
- 
                    A comment about the deployment. Required: No Type: String Update requires: No interruption 
- IgnoreApplicationStopFailures
- 
                    If true, then if an ApplicationStop,BeforeBlockTraffic, orAfterBlockTrafficdeployment lifecycle event to an instance fails, then the deployment continues to the next deployment lifecycle event. For example, ifApplicationStopfails, the deployment continues with DownloadBundle. IfBeforeBlockTrafficfails, the deployment continues withBlockTraffic. IfAfterBlockTrafficfails, the deployment continues withApplicationStop.If false or not specified, then if a lifecycle event fails during a deployment to an instance, that deployment fails. If deployment to that instance is part of an overall deployment and the number of healthy hosts is not less than the minimum number of healthy hosts, then a deployment to the next instance is attempted. During a deployment, the AWS CodeDeploy agent runs the scripts specified for ApplicationStop,BeforeBlockTraffic, andAfterBlockTrafficin the AppSpec file from the previous successful deployment. (All other scripts are run from the AppSpec file in the current deployment.) If one of these scripts contains an error and does not run successfully, the deployment can fail.If the cause of the failure is a script from the last successful deployment that will never run successfully, create a new deployment and use ignoreApplicationStopFailuresto specify that theApplicationStop,BeforeBlockTraffic, andAfterBlockTrafficfailures should be ignored.Required: No Type: Boolean Update requires: No interruption 
- Revision
- 
                    Information about the location of stored application artifacts and the service from which to retrieve them. Required: Yes Type: RevisionLocation Update requires: No interruption