Interface CfnAnomalyMonitorProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnomalyMonitorProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:33.906Z")
@Stability(Stable)
public interface CfnAnomalyMonitorProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAnomalyMonitor.
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.*;
CfnAnomalyMonitorProps cfnAnomalyMonitorProps = CfnAnomalyMonitorProps.builder()
.monitorName("monitorName")
.monitorType("monitorType")
// the properties below are optional
.monitorDimension("monitorDimension")
.monitorSpecification("monitorSpecification")
.resourceTags(List.of(ResourceTagProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnomalyMonitorPropsstatic final classAn implementation forCfnAnomalyMonitorProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMonitorName
The name of the monitor.- See Also:
-
getMonitorType
The possible type values.- See Also:
-
getMonitorDimension
The dimensions to evaluate.- See Also:
-
getMonitorSpecification
The array ofMonitorSpecificationin JSON array format.For instance, you can use
MonitorSpecificationto specify a tag, Cost Category, or linked account for your custom anomaly monitor. For further information, see the Examples section of this page.- See Also:
-
getResourceTags
Tags to assign to monitor.- See Also:
-
builder
- Returns:
- a
CfnAnomalyMonitorProps.BuilderofCfnAnomalyMonitorProps
-