aws-cdk-lib.aws_codedeploy.CfnDeploymentGroup.EC2TagFilterProperty

interface EC2TagFilterProperty

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

Information about an Amazon EC2 tag filter.

For more 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 in the AWS CodeDeploy User Guide .

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 eC2TagFilterProperty: codedeploy.CfnDeploymentGroup.EC2TagFilterProperty = {
  key: 'key',
  type: 'type',
  value: 'value',
};

Properties

NameTypeDescription
key?stringThe tag filter key.
type?stringThe tag filter type:.
value?stringThe tag filter value.

key?

Type: string (optional)

The tag filter key.


type?

Type: string (optional)

The tag filter type:.

  • KEY_ONLY : Key only.
  • VALUE_ONLY : Value only.
  • KEY_AND_VALUE : Key and value.

value?

Type: string (optional)

The tag filter value.