aws-cdk-lib.aws_codedeploy.CfnDeploymentGroup.TagFilterProperty

interface TagFilterProperty

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

TagFilter is a property type of the AWS::CodeDeploy::DeploymentGroup resource that specifies which on-premises instances to associate with the deployment group. To register on-premise instances with AWS CodeDeploy , see Configure Existing On-Premises Instances by Using AWS CodeDeploy in the AWS CodeDeploy User Guide .

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

Properties

NameTypeDescription
key?stringThe on-premises instance tag filter key.
type?stringThe on-premises instance tag filter type:.
value?stringThe on-premises instance tag filter value.

key?

Type: string (optional)

The on-premises instance tag filter key.


type?

Type: string (optional)

The on-premises instance tag filter type:.

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

value?

Type: string (optional)

The on-premises instance tag filter value.