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

UpdateDeploymentGroupInput

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

Represents the input of an UpdateDeploymentGroup operation.

interface UpdateDeploymentGroupInput {
alarmConfiguration?: AlarmConfiguration | null;
applicationName: string;
autoRollbackConfiguration?: AutoRollbackConfiguration | null;
autoScalingGroups?: string[] | null;
blueGreenDeploymentConfiguration?: BlueGreenDeploymentConfiguration | null;
currentDeploymentGroupName: string;
deploymentConfigName?: string | null;
deploymentStyle?: DeploymentStyle | null;
ec2TagFilters?: EC2TagFilter[] | null;
ec2TagSet?: EC2TagSet | null;
ecsServices?: ECSService[] | null;
loadBalancerInfo?: LoadBalancerInfo | null;
newDeploymentGroupName?: string | null;
onPremisesInstanceTagFilters?: TagFilter[] | null;
onPremisesTagSet?: OnPremisesTagSet | null;
outdatedInstancesStrategy?: OutdatedInstancesStrategy | null;
serviceRoleArn?: string | null;
triggerConfigurations?: TriggerConfig[] | null;
}

§Properties

§
alarmConfiguration?: AlarmConfiguration | null
[src]

Information to add or change about Amazon CloudWatch alarms when the deployment group is updated.

§
applicationName: string
[src]

The application name that corresponds to the deployment group to update.

§
autoRollbackConfiguration?: AutoRollbackConfiguration | null
[src]

Information for an automatic rollback configuration that is added or changed when a deployment group is updated.

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

The replacement list of Auto Scaling groups to be included in the deployment group, if you want to change them. To keep the Auto Scaling groups, enter their names. To remove Auto Scaling groups, do not enter any Auto Scaling group names.

§
blueGreenDeploymentConfiguration?: BlueGreenDeploymentConfiguration | null
[src]

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

§
currentDeploymentGroupName: string
[src]

The current name of the deployment group.

§
deploymentConfigName?: string | null
[src]

The replacement deployment configuration name to use, if you want to change it.

§
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 replacement set of Amazon EC2 tags on which to filter, if you want to change them. To keep the existing tags, enter their names. To remove tags, do not enter any tag names.

§
ec2TagSet?: EC2TagSet | null
[src]

Information about groups of tags applied to on-premises instances. The deployment group includes only EC2 instances identified by all the tag groups.

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

§
loadBalancerInfo?: LoadBalancerInfo | null
[src]

Information about the load balancer used in a deployment.

§
newDeploymentGroupName?: string | null
[src]

The new name of the deployment group, if you want to change it.

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

The replacement set of on-premises instance tags on which to filter, if you want to change them. To keep the existing tags, enter their names. To remove tags, do not enter any tag names.

§
onPremisesTagSet?: OnPremisesTagSet | null
[src]

Information about an on-premises instance tag set. The deployment group includes only on-premises instances identified by all the tag groups.

§
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 replacement ARN for the service role, if you want to change it.

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

Information about triggers to change when the deployment group is updated. For examples, see Edit a Trigger in a CodeDeploy Deployment Group in the AWS CodeDeploy User Guide.