Interface CfnAnomalyMonitorProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnomalyMonitorProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-11T23:26:29.725Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnomalyMonitorProps
static final class
An 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 ofMonitorSpecification
in JSON array format.For instance, you can use
MonitorSpecification
to 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.Builder
ofCfnAnomalyMonitorProps
-