Interface MetricWidgetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
AlarmWidgetProps
,GaugeWidgetProps
,GraphWidgetProps
,SingleValueWidgetProps
,TableWidgetProps
- All Known Implementing Classes:
AlarmWidgetProps.Jsii$Proxy
,GaugeWidgetProps.Jsii$Proxy
,GraphWidgetProps.Jsii$Proxy
,MetricWidgetProps.Jsii$Proxy
,SingleValueWidgetProps.Jsii$Proxy
,TableWidgetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:58.533Z")
@Stability(Stable)
public interface MetricWidgetProps
extends software.amazon.jsii.JsiiSerializable
Basic properties for widgets that display metrics.
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.cloudwatch.*; MetricWidgetProps metricWidgetProps = MetricWidgetProps.builder() .height(123) .region("region") .title("title") .width(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forMetricWidgetProps
static final class
An implementation forMetricWidgetProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic MetricWidgetProps.Builder
builder()
default Number
Height of the widget.default String
The region the metrics of this graph should be taken from.default String
getTitle()
Title for the graph.default Number
getWidth()
Width of the widget, in a grid of 24 units wide.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHeight
Height of the widget.Default: - 6 for Alarm and Graph widgets. 3 for single value widgets where most recent value of a metric is displayed.
-
getRegion
The region the metrics of this graph should be taken from.Default: - Current region
-
getTitle
Title for the graph.Default: - None
-
getWidth
Width of the widget, in a grid of 24 units wide.Default: 6
-
builder
- Returns:
- a
MetricWidgetProps.Builder
ofMetricWidgetProps
-