Interface CfnAnomalySubscription.ResourceTagProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnomalySubscription.ResourceTagProperty.Jsii$Proxy
- Enclosing class:
CfnAnomalySubscription
@Stability(Stable)
public static interface CfnAnomalySubscription.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnomalySubscription.ResourceTagPropertystatic final classAn implementation forCfnAnomalySubscription.ResourceTagProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The key that's associated with the tag.- See Also:
-
getValue
The value that's associated with the tag.- See Also:
-
builder
-