Interface CfnBudget.TagValuesProperty

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

@Stability(Stable) public static interface CfnBudget.TagValuesProperty extends software.amazon.jsii.JsiiSerializable
The values that are available for a tag.

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.budgets.*;
 TagValuesProperty tagValuesProperty = TagValuesProperty.builder()
         .key("key")
         .matchOptions(List.of("matchOptions"))
         .values(List.of("values"))
         .build();
 

See Also: