interface EC2TagSetProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CodeDeploy.CfnDeploymentGroup.EC2TagSetProperty |
Java | software.amazon.awscdk.services.codedeploy.CfnDeploymentGroup.EC2TagSetProperty |
Python | aws_cdk.aws_codedeploy.CfnDeploymentGroup.EC2TagSetProperty |
TypeScript | @aws-cdk/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 * as codedeploy from '@aws-cdk/aws-codedeploy';
const eC2TagSetProperty: codedeploy.CfnDeploymentGroup.EC2TagSetProperty = {
ec2TagSetList: [{
ec2TagGroup: [{
key: 'key',
type: 'type',
value: 'value',
}],
}],
};
Properties
Name | Type | Description |
---|---|---|
ec2 | IResolvable | IResolvable | EC2 [] | 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
|
EC2
[]
(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.