Interface CfnAnomalyMonitorProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnomalyMonitorProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.882Z")
@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();
-
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. -
getMonitorType
The possible type values. -
getMonitorDimension
The dimensions to evaluate. -
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. -
getResourceTags
AWS::CE::AnomalyMonitor.ResourceTags. -
builder
- Returns:
- a
CfnAnomalyMonitorProps.BuilderofCfnAnomalyMonitorProps
-