Interface CfnDeploymentGroup.OnPremisesTagSetListObjectProperty

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

@Stability(Stable) public static interface CfnDeploymentGroup.OnPremisesTagSetListObjectProperty extends software.amazon.jsii.JsiiSerializable
The OnPremisesTagSetListObject property type specifies 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.

OnPremisesTagSetListObject is a property of the CodeDeploy DeploymentGroup OnPremisesTagSet property type.

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