View source: R/codedeploy_operations.R
codedeploy_create_deployment | R Documentation |
Deploys an application revision through the specified deployment group.
See https://www.paws-r-sdk.com/docs/codedeploy_create_deployment/ for full documentation.
codedeploy_create_deployment(
applicationName,
deploymentGroupName = NULL,
revision = NULL,
deploymentConfigName = NULL,
description = NULL,
ignoreApplicationStopFailures = NULL,
targetInstances = NULL,
autoRollbackConfiguration = NULL,
updateOutdatedInstancesOnly = NULL,
fileExistsBehavior = NULL,
overrideAlarmConfiguration = NULL
)
applicationName |
[required] The name of an CodeDeploy application associated with the user or Amazon Web Services account. |
deploymentGroupName |
The name of the deployment group. |
revision |
The type and location of the revision to deploy. |
deploymentConfigName |
The name of a deployment configuration associated with the user or Amazon Web Services account. If not specified, the value configured in the deployment group is used
as the default. If the deployment group does not have a deployment
configuration associated with it, |
description |
A comment about the deployment. |
ignoreApplicationStopFailures |
If true, then if an 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 CodeDeploy agent runs the scripts specified for
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 |
targetInstances |
Information about the instances that belong to the replacement environment in a blue/green deployment. |
autoRollbackConfiguration |
Configuration information for an automatic rollback that is added when a deployment is created. |
updateOutdatedInstancesOnly |
Indicates whether to deploy to all instances or only to instances that are not running the latest application revision. |
fileExistsBehavior |
Information about how CodeDeploy handles files that already exist in a deployment target location but weren't part of the previous successful deployment. The
|
overrideAlarmConfiguration |
Allows you to specify information about alarms associated with a
deployment. The alarm configuration that you specify here will override
the alarm configuration at the deployment group level. Consider
overriding the alarm configuration if you have set up alarms at the
deployment group level that are causing deployment failures. In this
case, you would call If you specify an |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.