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 a scaling plan.
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnScalingPlan.TagFilterPropertystatic final classAn implementation forCfnScalingPlan.TagFilterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The tag key.- See Also:
-
getValues
The tag values (0 to 20).- See Also:
-
builder
-