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

DeploymentGroupInfo

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

Information about a deployment group.

interface DeploymentGroupInfo {
alarmConfiguration?: AlarmConfiguration | null;
applicationName?: string | null;
autoRollbackConfiguration?: AutoRollbackConfiguration | null;
autoScalingGroups?: AutoScalingGroup[] | null;
blueGreenDeploymentConfiguration?: BlueGreenDeploymentConfiguration | null;
computePlatform?: ComputePlatform | null;
deploymentConfigName?: string | null;
deploymentGroupId?: string | null;
deploymentGroupName?: string | null;
deploymentStyle?: DeploymentStyle | null;
ec2TagFilters?: EC2TagFilter[] | null;
ec2TagSet?: EC2TagSet | null;
ecsServices?: ECSService[] | null;
lastAttemptedDeployment?: LastDeploymentInfo | null;
lastSuccessfulDeployment?: LastDeploymentInfo | null;
loadBalancerInfo?: LoadBalancerInfo | null;
onPremisesInstanceTagFilters?: TagFilter[] | null;
onPremisesTagSet?: OnPremisesTagSet | null;
outdatedInstancesStrategy?: OutdatedInstancesStrategy | null;
serviceRoleArn?: string | null;
targetRevision?: RevisionLocation | null;
triggerConfigurations?: TriggerConfig[] | null;
}

§Properties

§
alarmConfiguration?: AlarmConfiguration | null
[src]

A list of alarms associated with the deployment group.

§
applicationName?: string | null
[src]

The application name.

§
autoRollbackConfiguration?: AutoRollbackConfiguration | null
[src]

Information about the automatic rollback configuration associated with the deployment group.

§
autoScalingGroups?: AutoScalingGroup[] | null
[src]

A list of associated Auto Scaling groups.

§
blueGreenDeploymentConfiguration?: BlueGreenDeploymentConfiguration | null
[src]

Information about blue/green deployment options for a deployment group.

§
computePlatform?: ComputePlatform | null
[src]

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

§
deploymentConfigName?: string | null
[src]

The deployment configuration name.

§
deploymentGroupId?: string | null
[src]

The deployment group ID.

§
deploymentGroupName?: string | null
[src]

The deployment group name.

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

§
ec2TagFilters?: EC2TagFilter[] | null
[src]

The Amazon EC2 tags on which to filter. The deployment group includes EC2 instances with any of the specified tags.

§
ec2TagSet?: EC2TagSet | null
[src]

Information about groups of tags applied to an EC2 instance. The deployment group includes only EC2 instances identified by all of the tag groups. Cannot be used in the same call as ec2TagFilters.

§
ecsServices?: ECSService[] | null
[src]

The target Amazon ECS services in the deployment group. This applies only to deployment groups that use the Amazon ECS compute platform. A target Amazon ECS service is specified as an Amazon ECS cluster and service name pair using the format <clustername>:<servicename>.

§
lastAttemptedDeployment?: LastDeploymentInfo | null
[src]

Information about the most recent attempted deployment to the deployment group.

§
lastSuccessfulDeployment?: LastDeploymentInfo | null
[src]

Information about the most recent successful deployment to the deployment group.

§
loadBalancerInfo?: LoadBalancerInfo | null
[src]

Information about the load balancer to use in a deployment.

§
onPremisesInstanceTagFilters?: TagFilter[] | null
[src]

The on-premises instance tags on which to filter. The deployment group includes on-premises instances with any of the specified tags.

§
onPremisesTagSet?: OnPremisesTagSet | null
[src]

Information about groups of tags applied to an on-premises instance. The deployment group includes only on-premises instances identified by all the tag groups. Cannot be used in the same call as onPremisesInstanceTagFilters.

§
outdatedInstancesStrategy?: OutdatedInstancesStrategy | null
[src]

Indicates what happens when new EC2 instances are launched mid-deployment and do not receive the deployed application revision.

If this option is set to UPDATE or is unspecified, CodeDeploy initiates one or more 'auto-update outdated instances' deployments to apply the deployed application revision to the new EC2 instances.

If this option is set to IGNORE, CodeDeploy does not initiate a deployment to update the new EC2 instances. This may result in instances having different revisions.

§
serviceRoleArn?: string | null
[src]

A service role Amazon Resource Name (ARN) that grants CodeDeploy permission to make calls to AWS services on your behalf. For more information, see Create a Service Role for AWS CodeDeploy in the AWS CodeDeploy User Guide.

§
targetRevision?: RevisionLocation | null
[src]

Information about the deployment group's target revision, including type and location.

§
triggerConfigurations?: TriggerConfig[] | null
[src]

Information about triggers associated with the deployment group.