Interface GraphWidgetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,MetricWidgetProps
- All Known Implementing Classes:
GraphWidgetProps.Jsii$Proxy
Example:
Dashboard dashboard; dashboard.addWidgets(GraphWidget.Builder.create() // ... .legendPosition(LegendPosition.RIGHT) .build());
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forGraphWidgetProps
static final class
An implementation forGraphWidgetProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic GraphWidgetProps.Builder
builder()
default String
getEnd()
The end of the time range to use for each widget independently from those of the dashboard.getLeft()
Metrics to display on left Y axis.default List<HorizontalAnnotation>
Annotations for the left Y axis.default YAxisProps
Left Y axis.default LegendPosition
Position of the legend.default Boolean
Whether the graph should show live data.default Duration
The default period for all metrics in this widget.getRight()
Metrics to display on right Y axis.default List<HorizontalAnnotation>
Annotations for the right Y axis.default YAxisProps
Right Y axis.default Boolean
Whether to show the value from the entire time range.default Boolean
Whether the graph should be shown as stacked lines.default String
getStart()
The start of the time range to use for each widget independently from those of the dashboard.default String
The default statistic to be displayed for each metric.default List<VerticalAnnotation>
Annotations for the X axis.default GraphWidgetView
getView()
Display this metric.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.cloudwatch.MetricWidgetProps
getHeight, getRegion, getTitle, getWidth
-
Method Details
-
getEnd
The end of the time range to use for each widget independently from those of the dashboard.If you specify a value for end, you must also specify a value for start. Specify an absolute time in the ISO 8601 format. For example, 2018-12-17T06:00:00.000Z.
Default: When the dashboard loads, the end date will be the current time.
-
getLeft
Metrics to display on left Y axis.Default: - No metrics
-
getLeftAnnotations
Annotations for the left Y axis.Default: - No annotations
-
getLeftYAxis
Left Y axis.Default: - None
-
getLegendPosition
Position of the legend.Default: - bottom
-
getLiveData
Whether the graph should show live data.Default: false
-
getPeriod
The default period for all metrics in this widget.The period is the length of time represented by one data point on the graph. This default can be overridden within each metric definition.
Default: cdk.Duration.seconds(300)
-
getRight
Metrics to display on right Y axis.Default: - No metrics
-
getRightAnnotations
Annotations for the right Y axis.Default: - No annotations
-
getRightYAxis
Right Y axis.Default: - None
-
getSetPeriodToTimeRange
Whether to show the value from the entire time range. Only applicable for Bar and Pie charts.If false, values will be from the most recent period of your chosen time range; if true, shows the value from the entire time range.
Default: false
-
getStacked
Whether the graph should be shown as stacked lines.Default: false
-
getStart
The start of the time range to use for each widget independently from those of the dashboard.You can specify start without specifying end to specify a relative time range that ends with the current time. In this case, the value of start must begin with -P, and you can use M, H, D, W and M as abbreviations for minutes, hours, days, weeks and months. For example, -PT8H shows the last 8 hours and -P3M shows the last three months. You can also use start along with an end field, to specify an absolute time range. When specifying an absolute time range, use the ISO 8601 format. For example, 2018-12-17T06:00:00.000Z.
Default: When the dashboard loads, the start time will be the default time range.
-
getStatistic
The default statistic to be displayed for each metric.This default can be overridden within the definition of each individual metric
Default: - The statistic for each metric is used
-
getVerticalAnnotations
Annotations for the X axis.Default: - No annotations
-
getView
Display this metric.Default: TimeSeries
-
builder
- Returns:
- a
GraphWidgetProps.Builder
ofGraphWidgetProps
-