AWS CodeDeploy

Get deployment

Get information about an AWS CodeDeploy deployment.

Inputs

Field

Type

Description

region [required]

enum

default: us-east-1

deploymentId [required]

string

Outputs

Expand All

Field

Type

Description

deploymentInfo [required]

object

applicationName

string

The application name.

deploymentGroupName

string

The deployment group name.

deploymentConfigName

string

The deployment configuration name.

deploymentId

string

The unique ID of a deployment.

previousRevision

object

Information about the application revision that was deployed to the deployment group before the most recent successful deployment.

revisionType

string

The type of application revision:
S3: An application revision stored in Amazon S3.
GitHub: An application revision stored in GitHub (EC2/On-premises deployments only).
String: A YAML-formatted or JSON-formatted string (AWS Lambda deployments only).
AppSpecContent: An AppSpecContent object that contains the contents of an AppSpec file for an AWS Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML stored as a RawString.

s3Location

object

Information about the location of a revision stored in Amazon S3.

bucket

string

The name of the Amazon S3 bucket where the application revision is stored.

key

string

The name of the Amazon S3 object that represents the bundled artifacts for the application revision.

bundleType

string

The file type of the application revision. Must be one of the following:
tar: A tar archive file.
tgz: A compressed tar archive file.
zip: A zip archive file.

version

string

A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision. If the version is not specified, the system uses the most recent version by default.

eTag

string

The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision. If the ETag is not specified as an input parameter, ETag validation of the object is skipped.

gitHubLocation

object

Information about the location of application artifacts stored in GitHub.

repository

string

The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision. Specified as account/repository.

commitId

string

The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.

string

object

Information about the location of an Lambda deployment revision stored as a RawString.

content

string

The YAML-formatted or JSON-formatted revision string. It includes information about which Lambda function to update and optional Lambda functions that validate deployment lifecycle events.

sha256

string

The SHA256 hash value of the revision content.

appSpecContent

object

The content of an AppSpec file for an Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML and stored as a RawString.

content

string

The YAML-formatted or JSON-formatted revision string. For an Lambda deployment, the content includes a Lambda function name, the alias for its original version, and the alias for its replacement version. The deployment shifts traffic from the original version of the Lambda function to the replacement version. For an Amazon ECS deployment, the content includes the task name, information about the load balancer that serves traffic to the container, and more. For both types of deployments, the content can specify Lambda functions that run at specified hooks, such as BeforeInstall, during a deployment.

sha256

string

The SHA256 hash value of the revision content.

revision

object

Information about the location of stored application artifacts and the service from which to retrieve them.

revisionType

string

The type of application revision:
S3: An application revision stored in Amazon S3.
GitHub: An application revision stored in GitHub (EC2/On-premises deployments only).
String: A YAML-formatted or JSON-formatted string (AWS Lambda deployments only).
AppSpecContent: An AppSpecContent object that contains the contents of an AppSpec file for an AWS Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML stored as a RawString.

s3Location

object

Information about the location of a revision stored in Amazon S3.

bucket

string

The name of the Amazon S3 bucket where the application revision is stored.

key

string

The name of the Amazon S3 object that represents the bundled artifacts for the application revision.

bundleType

string

The file type of the application revision. Must be one of the following:
tar: A tar archive file.
tgz: A compressed tar archive file.
zip: A zip archive file.

version

string

A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision. If the version is not specified, the system uses the most recent version by default.

eTag

string

The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision. If the ETag is not specified as an input parameter, ETag validation of the object is skipped.

gitHubLocation

object

Information about the location of application artifacts stored in GitHub.

repository

string

The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision. Specified as account/repository.

commitId

string

The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.

string

object

Information about the location of an Lambda deployment revision stored as a RawString.

content

string

The YAML-formatted or JSON-formatted revision string. It includes information about which Lambda function to update and optional Lambda functions that validate deployment lifecycle events.

sha256

string

The SHA256 hash value of the revision content.

appSpecContent

object

The content of an AppSpec file for an Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML and stored as a RawString.

content

string

The YAML-formatted or JSON-formatted revision string. For an Lambda deployment, the content includes a Lambda function name, the alias for its original version, and the alias for its replacement version. The deployment shifts traffic from the original version of the Lambda function to the replacement version. For an Amazon ECS deployment, the content includes the task name, information about the load balancer that serves traffic to the container, and more. For both types of deployments, the content can specify Lambda functions that run at specified hooks, such as BeforeInstall, during a deployment.

sha256

string

The SHA256 hash value of the revision content.

status

string

The current state of the deployment as a whole.

errorInformation

object

Information about any error associated with this deployment.

code

string

For more information, see Error Codes for AWS CodeDeploy in the AWS CodeDeploy User Guide. The error code:
APPLICATION_MISSING: The application was missing. This error code is most likely raised if the application is deleted after the deployment is created, but before it is started.
DEPLOYMENT_GROUP_MISSING: The deployment group was missing. This error code is most likely raised if the deployment group is deleted after the deployment is created, but before it is started.
HEALTH_CONSTRAINTS: The deployment failed on too many instances to be successfully deployed within the instance health constraints specified.
HEALTH_CONSTRAINTS_INVALID: The revision cannot be successfully deployed within the instance health constraints specified.
IAM_ROLE_MISSING: The service role cannot be accessed.
IAM_ROLE_PERMISSIONS: The service role does not have the correct permissions.
INTERNAL_ERROR: There was an internal error.
NO_EC2_SUBSCRIPTION: The calling account is not subscribed to Amazon EC2.
NO_INSTANCES: No instances were specified, or no instances can be found.
OVER_MAX_INSTANCES: The maximum number of instances was exceeded.
THROTTLED: The operation was throttled because the calling account exceeded the throttling limits of one or more AWS services.
TIMEOUT: The deployment has timed out.
REVISION_MISSING: The revision ID was missing. This error code is most likely raised if the revision is deleted after the deployment is created, but before it is started.

message

string

An accompanying error message.

createTime

date-time

A timestamp that indicates when the deployment was created.

startTime

date-time

A timestamp that indicates when the deployment was deployed to the deployment group. In some cases, the reported value of the start time might be later than the complete time. This is due to differences in the clock settings of backend servers that participate in the deployment process.

completeTime

date-time

A timestamp that indicates when the deployment was complete.

deploymentOverview

object

A summary of the deployment status of the instances in the deployment.

Pending

number

The number of instances in the deployment in a pending state.

InProgress

number

The number of instances in which the deployment is in progress.

Succeeded

number

The number of instances in the deployment to which revisions have been successfully deployed.

Failed

number

The number of instances in the deployment in a failed state.

Skipped

number

The number of instances in the deployment in a skipped state.

Ready

number

The number of instances in a replacement environment ready to receive traffic in a blue/green deployment.

description

string

A comment about the deployment.

creator

string

The means by which the deployment was created:
user: A user created the deployment.
autoscaling: Amazon EC2 Auto Scaling created the deployment.
codeDeployRollback: A rollback process created the deployment.
CodeDeployAutoUpdate: An auto-update process created the deployment when it detected outdated EC2 instances.

ignoreApplicationStopFailures

boolean

If true, then if an ApplicationStop, BeforeBlockTraffic, or AfterBlockTraffic deployment lifecycle event to an instance fails, then the deployment continues to the next deployment lifecycle event. For example, if ApplicationStop fails, the deployment continues with DownloadBundle. If BeforeBlockTraffic fails, the deployment continues with BlockTraffic. If AfterBlockTraffic fails, the deployment continues with ApplicationStop.
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, and AfterBlockTraffic in 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 ignoreApplicationStopFailures to specify that the ApplicationStop, BeforeBlockTraffic, and AfterBlockTraffic failures should be ignored.

autoRollbackConfiguration

object

Information about the automatic rollback configuration associated with the deployment.

enabled

boolean

Indicates whether a defined automatic rollback configuration is currently enabled.

events

[string]

The event type or types that trigger a rollback.

updateOutdatedInstancesOnly

boolean

Indicates whether only instances that are not running the latest application revision are to be deployed to.

rollbackInfo

object

Information about a deployment rollback.

rollbackDeploymentId

string

The ID of the deployment rollback.

rollbackTriggeringDeploymentId

string

The deployment ID of the deployment that was underway and triggered a rollback deployment because it failed or was stopped.

rollbackMessage

string

Information that describes the status of a deployment rollback (for example, whether the deployment can't be rolled back, is in progress, failed, or succeeded).

deploymentStyle

object

Information about the type of deployment, either in-place or blue/green, you want to run and whether to route deployment traffic behind a load balancer.

deploymentType

string

Indicates whether to run an in-place deployment or a blue/green deployment.

deploymentOption

string

Indicates whether to route deployment traffic behind a load balancer.

targetInstances

object

Information about the instances that belong to the replacement environment in a blue/green deployment.

tagFilters

[object]

The tag filter key, type, and value used to identify Amazon EC2 instances in a replacement environment for a blue/green deployment. Cannot be used in the same call as ec2TagSet.

Key

string

The tag filter key.

Value

string

The tag filter value.

Type

string

The tag filter type: KEY_ONLY: Key only. VALUE_ONLY: Value only. KEY_AND_VALUE: Key and value.

autoScalingGroups

[string]

The names of one or more Auto Scaling groups to identify a replacement environment for a blue/green deployment.

ec2TagSet

object

Information about the groups of Amazon EC2 instance tags that an instance must be identified by in order for it to be included in the replacement environment for a blue/green deployment. Cannot be used in the same call as tagFilters.

ec2TagSetList

[array]

A list that contains other lists of Amazon EC2 instance tag groups. For an instance to be included in the deployment group, it must be identified by all of the tag groups in the list.

instanceTerminationWaitTimeStarted

boolean

Indicates whether the wait period set for the termination of instances in the original environment has started. Status is false if the KEEP_ALIVE option is specified. Otherwise, true as soon as the termination wait period starts.

blueGreenDeploymentConfiguration

object

Information about blue/green deployment options for this deployment.

terminateBlueInstancesOnDeploymentSuccess

object

Information about whether to terminate instances in the original fleet during a blue/green deployment.

action

string

The action to take on instances in the original environment after a successful blue/green deployment.
TERMINATE: Instances are terminated after a specified wait time.
KEEP_ALIVE: Instances are left running after they are deregistered from the load balancer and removed from the deployment group.

terminationWaitTimeInMinutes

number

For an Amazon EC2 deployment, the number of minutes to wait after a successful blue/green deployment before terminating instances from the original environment. For an Amazon ECS deployment, the number of minutes before deleting the original (blue) task set. During an Amazon ECS deployment, CodeDeploy shifts traffic from the original (blue) task set to a replacement (green) task set. The maximum setting is 2880 minutes (2 days).

deploymentReadyOption

object

Information about the action to take when newly provisioned instances are ready to receive traffic in a blue/green deployment.

actionOnTimeout

string

Information about when to reroute traffic from an original environment to a replacement environment in a blue/green deployment.
CONTINUE_DEPLOYMENT: Register new instances with the load balancer immediately after the new application revision is installed on the instances in the replacement environment.
STOP_DEPLOYMENT: Do not register new instances with a load balancer unless traffic rerouting is started using ContinueDeployment. If traffic rerouting is not started before the end of the specified wait period, the deployment status is changed to Stopped.

waitTimeInMinutes

number

The number of minutes to wait before the status of a blue/green deployment is changed to Stopped if rerouting is not started manually. Applies only to the STOP_DEPLOYMENT option for actionOnTimeout.

greenFleetProvisioningOption

object

Information about how instances are provisioned for a replacement environment in a blue/green deployment.

action

string

The method used to add instances to a replacement environment.
DISCOVER_EXISTING: Use instances that already exist or will be created manually.
COPY_AUTO_SCALING_GROUP: Use settings from a specified Auto Scaling group to define and create instances in a new Auto Scaling group.

loadBalancerInfo

object

Information about the load balancer used in the deployment.

elbInfoList

[object]

An array that contains information about the load balancers to use for load balancing in a deployment. If you're using Classic Load Balancers, specify those load balancers in this array. You can add up to 10 load balancers to the array. If you're using Application Load Balancers or Network Load Balancers, use the targetGroupInfoList array instead of this one.

name

string

For blue/green deployments, the name of the Classic Load Balancer that is used to route traffic from original instances to replacement instances in a blue/green deployment. For in-place deployments, the name of the Classic Load Balancer that instances are deregistered from so they are not serving traffic during a deployment, and then re-registered with after the deployment is complete.

targetGroupInfoList

[object]

An array that contains information about the target groups to use for load balancing in a deployment. If you're using Application Load Balancers and Network Load Balancers, specify their associated target groups in this array. You can add up to 10 target groups to the array. If you're using Classic Load Balancers, use the elbInfoList array instead of this one.

name

string

For blue/green deployments, the name of the target group that instances in the original environment are deregistered from, and instances in the replacement environment are registered with. For in-place deployments, the name of the target group that instances are deregistered from, so they are not serving traffic during a deployment, and then re-registered with after the deployment is complete.

targetGroupPairInfoList

[object]

The target group pair information. This is an array of TargeGroupPairInfo objects with a maximum size of one.

targetGroups

[object]

One pair of target groups. One is associated with the original task set. The second is associated with the task set that serves traffic after the deployment is complete.

name

string

For blue/green deployments, the name of the target group that instances in the original environment are deregistered from, and instances in the replacement environment are registered with. For in-place deployments, the name of the target group that instances are deregistered from, so they are not serving traffic during a deployment, and then re-registered with after the deployment is complete.

prodTrafficRoute

object

The path used by a load balancer to route production traffic when an Amazon ECS deployment is complete.

listenerArns

[string]

The Amazon Resource Name (ARN) of one listener. The listener identifies the route between a target group and a load balancer. This is an array of strings with a maximum size of one.

testTrafficRoute

object

An optional path used by a load balancer to route test traffic after an Amazon ECS deployment. Validation can occur while test traffic is served during a deployment.

listenerArns

[string]

The Amazon Resource Name (ARN) of one listener. The listener identifies the route between a target group and a load balancer. This is an array of strings with a maximum size of one.

additionalDeploymentStatusInfo

string

Provides information about the results of a deployment, such as whether instances in the original environment in a blue/green deployment were not terminated.

fileExistsBehavior

string

Information about how AWS CodeDeploy handles files that already exist in a deployment target location but weren't part of the previous successful deployment.
DISALLOW: The deployment fails. This is also the default behavior if no option is specified.
OVERWRITE: The version of the file from the application revision currently being deployed replaces the version already on the instance.
RETAIN: The version of the file already on the instance is kept and used as part of the new deployment.

deploymentStatusMessages

[string]

Messages that contain information about the status of a deployment.

computePlatform

string

The destination platform type for the deployment (Lambda, Server, or ECS).

externalId

string

The unique ID for an external resource (for example, a CloudFormation stack ID) that is linked to this deployment.

relatedDeployments

object

autoUpdateOutdatedInstancesRootDeploymentId

string

The deployment ID of the root deployment that triggered this deployment.

autoUpdateOutdatedInstancesDeploymentIds

[string]

The deployment IDs of auto-update outdated instances deployments triggered by this deployment.

overrideAlarmConfiguration

object

enabled

boolean

Indicates whether the alarm configuration is enabled.

ignorePollAlarmFailure

boolean

Indicates whether a deployment should continue if information about the current state of alarms cannot be retrieved from Amazon CloudWatch. The default value is false. true: The deployment proceeds even if alarm status information can't be retrieved from Amazon CloudWatch. false: The deployment stops if alarm status information can't be retrieved from Amazon CloudWatch.

alarms

[object]

A list of alarms configured for the deployment or deployment group. A maximum of 10 alarms can be added.

name

string

The name of the alarm. Maximum length is 255 characters. Each alarm name can be used only once in a list of alarms.

amzRequestId [required]

string