aws-cdk-lib.aws_codedeploy.CfnDeploymentGroup.EC2TagSetProperty

interface EC2TagSetProperty

LanguageType name
.NETAmazon.CDK.AWS.CodeDeploy.CfnDeploymentGroup.EC2TagSetProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodedeploy#CfnDeploymentGroup_EC2TagSetProperty
Javasoftware.amazon.awscdk.services.codedeploy.CfnDeploymentGroup.EC2TagSetProperty
Pythonaws_cdk.aws_codedeploy.CfnDeploymentGroup.EC2TagSetProperty
TypeScript aws-cdk-lib » aws_codedeploy » CfnDeploymentGroup » EC2TagSetProperty

The EC2TagSet property type specifies information about groups of tags applied to Amazon EC2 instances.

The deployment group includes only Amazon EC2 instances identified by all the tag groups. EC2TagSet cannot be used in the same template as EC2TagFilter .

For information about using tags and tag groups to help manage your Amazon EC2 instances and on-premises instances, see Tagging Instances for Deployment Groups in AWS CodeDeploy .

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codedeploy as codedeploy } from 'aws-cdk-lib';
const eC2TagSetProperty: codedeploy.CfnDeploymentGroup.EC2TagSetProperty = {
  ec2TagSetList: [{
    ec2TagGroup: [{
      key: 'key',
      type: 'type',
      value: 'value',
    }],
  }],
};

Properties

NameTypeDescription
ec2TagSetList?IResolvable | IResolvable | EC2TagSetListObjectProperty[]The Amazon EC2 tags that are already applied to Amazon EC2 instances that you want to include in the deployment group.

ec2TagSetList?

Type: IResolvable | IResolvable | EC2TagSetListObjectProperty[] (optional)

The Amazon EC2 tags that are already applied to Amazon EC2 instances that you want to include in the deployment group.

CodeDeploy includes all Amazon EC2 instances identified by any of the tags you specify in this deployment group.

Duplicates are not allowed.