Interface CfnDeploymentGroup.EC2TagFilterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeploymentGroup.EC2TagFilterProperty.Jsii$Proxy
Enclosing class:
CfnDeploymentGroup

@Stability(Stable) public static interface CfnDeploymentGroup.EC2TagFilterProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.codedeploy.*;
 EC2TagFilterProperty eC2TagFilterProperty = EC2TagFilterProperty.builder()
         .key("key")
         .type("type")
         .value("value")
         .build();
 

See Also: