Interface CfnAnomalyMonitor.ResourceTagProperty

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

@Stability(Stable) public static interface CfnAnomalyMonitor.ResourceTagProperty extends software.amazon.jsii.JsiiSerializable
The tag structure that contains a tag key and value.

Tagging is supported only for the following Cost Explorer resource types: AnomalyMonitor , AnomalySubscription , CostCategory .

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.ce.*;
 ResourceTagProperty resourceTagProperty = ResourceTagProperty.builder()
         .key("key")
         .value("value")
         .build();
 

See Also: