Interface CfnScalingPlan.TagFilterProperty

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

@Stability(Stable) public static interface CfnScalingPlan.TagFilterProperty extends software.amazon.jsii.JsiiSerializable
TagFilter is a subproperty of ApplicationSource that specifies a tag for an application source to use with AWS Auto Scaling ( Auto Scaling Plans ).

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.autoscalingplans.*;
 TagFilterProperty tagFilterProperty = TagFilterProperty.builder()
         .key("key")
         // the properties below are optional
         .values(List.of("values"))
         .build();