Interface CfnDeploymentGroup.OnPremisesTagSetProperty

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

@Stability(Stable) public static interface CfnDeploymentGroup.OnPremisesTagSetProperty extends software.amazon.jsii.JsiiSerializable
The OnPremisesTagSet property type specifies a list containing other lists of on-premises instance tag groups.

In order for an instance to be included in the deployment group, it must be identified by all the tag groups in the list.

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 .

OnPremisesTagSet is a property of the DeploymentGroup resource.

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.*;
 OnPremisesTagSetProperty onPremisesTagSetProperty = OnPremisesTagSetProperty.builder()
         .onPremisesTagSetList(List.of(OnPremisesTagSetListObjectProperty.builder()
                 .onPremisesTagGroup(List.of(TagFilterProperty.builder()
                         .key("key")
                         .type("type")
                         .value("value")
                         .build()))
                 .build()))
         .build();