public static interface CfnDeploymentGroup.OnPremisesTagSetProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDeploymentGroup.OnPremisesTagSetProperty.Builder
A builder for
CfnDeploymentGroup.OnPremisesTagSetProperty |
static class |
CfnDeploymentGroup.OnPremisesTagSetProperty.Jsii$Proxy
An implementation for
CfnDeploymentGroup.OnPremisesTagSetProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDeploymentGroup.OnPremisesTagSetProperty.Builder |
builder() |
default java.lang.Object |
getOnPremisesTagSetList()
A list that contains other lists of on-premises instance tag groups.
|
default java.lang.Object getOnPremisesTagSetList()
For an instance to be included in the deployment group, it must be identified by all of the tag groups in the list.
Duplicates are not allowed.
static CfnDeploymentGroup.OnPremisesTagSetProperty.Builder builder()