Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DeploymentInfo

import type { DeploymentInfo } from "https://aws-api.deno.dev/v0.4/services/codedeploy.ts?docs=full";

Information about a deployment.

interface DeploymentInfo {
additionalDeploymentStatusInfo?: string | null;
applicationName?: string | null;
autoRollbackConfiguration?: AutoRollbackConfiguration | null;
blueGreenDeploymentConfiguration?: BlueGreenDeploymentConfiguration | null;
completeTime?: Date | number | null;
computePlatform?: ComputePlatform | null;
createTime?: Date | number | null;
creator?: DeploymentCreator | null;
deploymentConfigName?: string | null;
deploymentGroupName?: string | null;
deploymentId?: string | null;
deploymentOverview?: DeploymentOverview | null;
deploymentStatusMessages?: string[] | null;
deploymentStyle?: DeploymentStyle | null;
description?: string | null;
errorInformation?: ErrorInformation | null;
externalId?: string | null;
fileExistsBehavior?: FileExistsBehavior | null;
ignoreApplicationStopFailures?: boolean | null;
instanceTerminationWaitTimeStarted?: boolean | null;
loadBalancerInfo?: LoadBalancerInfo | null;
overrideAlarmConfiguration?: AlarmConfiguration | null;
previousRevision?: RevisionLocation | null;
relatedDeployments?: RelatedDeployments | null;
revision?: RevisionLocation | null;
rollbackInfo?: RollbackInfo | null;
startTime?: Date | number | null;
status?: DeploymentStatus | null;
targetInstances?: TargetInstances | null;
updateOutdatedInstancesOnly?: boolean | null;
}

§Properties

§
additionalDeploymentStatusInfo?: string | null
[src]

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

§
applicationName?: string | null
[src]

The application name.

§
autoRollbackConfiguration?: AutoRollbackConfiguration | null
[src]

Information about the automatic rollback configuration associated with the deployment.

§
blueGreenDeploymentConfiguration?: BlueGreenDeploymentConfiguration | null
[src]

Information about blue/green deployment options for this deployment.

§
completeTime?: Date | number | null
[src]

A timestamp that indicates when the deployment was complete.

§
computePlatform?: ComputePlatform | null
[src]

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

§
createTime?: Date | number | null
[src]

A timestamp that indicates when the deployment was created.

§
creator?: DeploymentCreator | null
[src]

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 Amazon EC2 instances.
§
deploymentConfigName?: string | null
[src]

The deployment configuration name.

§
deploymentGroupName?: string | null
[src]

The deployment group name.

§
deploymentId?: string | null
[src]

The unique ID of a deployment.

§
deploymentOverview?: DeploymentOverview | null
[src]

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

§
deploymentStatusMessages?: string[] | null
[src]

Messages that contain information about the status of a deployment.

§
deploymentStyle?: DeploymentStyle | null
[src]

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.

§
description?: string | null
[src]

A comment about the deployment.

§
errorInformation?: ErrorInformation | null
[src]

Information about any error associated with this deployment.

§
externalId?: string | null
[src]

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

§
fileExistsBehavior?: FileExistsBehavior | null
[src]

Information about how 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.
§
ignoreApplicationStopFailures?: boolean | null
[src]

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 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.

§
instanceTerminationWaitTimeStarted?: boolean | null
[src]

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.

§
loadBalancerInfo?: LoadBalancerInfo | null
[src]

Information about the load balancer used in the deployment.

§
overrideAlarmConfiguration?: AlarmConfiguration | null
[src]
§
previousRevision?: RevisionLocation | null
[src]

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

§
relatedDeployments?: RelatedDeployments | null
[src]
§
revision?: RevisionLocation | null
[src]

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

§
rollbackInfo?: RollbackInfo | null
[src]

Information about a deployment rollback.

§
startTime?: Date | number | null
[src]

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.

§
status?: DeploymentStatus | null
[src]

The current state of the deployment as a whole.

§
targetInstances?: TargetInstances | null
[src]

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

§
updateOutdatedInstancesOnly?: boolean | null
[src]

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