TableWidgetProps
- class aws_cdk.aws_cloudwatch.TableWidgetProps(*, height=None, region=None, title=None, width=None, end=None, full_precision=None, layout=None, live_data=None, metrics=None, period=None, set_period_to_time_range=None, show_units_in_label=None, start=None, statistic=None, summary=None, thresholds=None)
Bases:
MetricWidgetProps
Properties for a TableWidget.
- Parameters:
height (
Union
[int
,float
,None
]) – 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.region (
Optional
[str
]) – The region the metrics of this graph should be taken from. Default: - Current regiontitle (
Optional
[str
]) – Title for the graph. Default: - Nonewidth (
Union
[int
,float
,None
]) – Width of the widget, in a grid of 24 units wide. Default: 6end (
Optional
[str
]) – 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.full_precision (
Optional
[bool
]) – Whether to show as many digits as can fit, before rounding. Default: falselayout (
Optional
[TableLayout
]) – Table layout. Default: - TableLayout.HORIZONTALlive_data (
Optional
[bool
]) – Whether the graph should show live data. Default: falsemetrics (
Optional
[Sequence
[IMetric
]]) – Metrics to display in the table. Default: - No metricsperiod (
Optional
[Duration
]) – 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)set_period_to_time_range (
Optional
[bool
]) – 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: falseshow_units_in_label (
Optional
[bool
]) – Show the metrics units in the label column. Default: - falsestart (
Optional
[str
]) – 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.statistic (
Optional
[str
]) – 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 usedsummary (
Union
[TableSummaryProps
,Dict
[str
,Any
],None
]) – Properties for displaying summary columns. Default: - no summary columns are shownthresholds (
Optional
[Sequence
[TableThreshold
]]) – Thresholds for highlighting table cells. Default: - No thresholds
- ExampleMetadata:
infused
Example:
# dashboard: cloudwatch.Dashboard dashboard.add_widgets(cloudwatch.TableWidget( # ... layout=cloudwatch.TableLayout.VERTICAL ))
Attributes
- end
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.
- full_precision
Whether to show as many digits as can fit, before rounding.
- Default:
false
- height
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.
- layout
Table layout.
- Default:
TableLayout.HORIZONTAL
- live_data
Whether the graph should show live data.
- Default:
false
- metrics
Metrics to display in the table.
- Default:
No metrics
- period
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)
- region
The region the metrics of this graph should be taken from.
- Default:
Current region
- set_period_to_time_range
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
- show_units_in_label
Show the metrics units in the label column.
- Default:
false
- start
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.
- statistic
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
- summary
Properties for displaying summary columns.
- Default:
no summary columns are shown
- thresholds
Thresholds for highlighting table cells.
- Default:
No thresholds
- title
Title for the graph.
- Default:
None
- width
Width of the widget, in a grid of 24 units wide.
- Default:
6