Interface CfnDeploymentGroup.TagFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeploymentGroup.TagFilterProperty.Jsii$Proxy
- Enclosing class:
CfnDeploymentGroup
@Stability(Stable)
public static interface CfnDeploymentGroup.TagFilterProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.codedeploy.*;
TagFilterProperty tagFilterProperty = TagFilterProperty.builder()
.key("key")
.type("type")
.value("value")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeploymentGroup.TagFilterPropertystatic final classAn implementation forCfnDeploymentGroup.TagFilterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The on-premises instance tag filter key.- See Also:
-
getType
The on-premises instance tag filter type:.- KEY_ONLY: Key only.
- VALUE_ONLY: Value only.
- KEY_AND_VALUE: Key and value.
- See Also:
-
getValue
The on-premises instance tag filter value.- See Also:
-
builder
-