Interface TableWidgetProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, MetricWidgetProps
All Known Implementing Classes:
TableWidgetProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-12-06T14:43:15.774Z") @Stability(Stable) public interface TableWidgetProps extends software.amazon.jsii.JsiiSerializable, MetricWidgetProps
Properties for a TableWidget.

Example:

 Dashboard dashboard;
 dashboard.addWidgets(TableWidget.Builder.create()
         // ...
         .layout(TableLayout.VERTICAL)
         .build());
 
  • Method Details

    • getEnd

      @Stability(Stable) @Nullable default String 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.

    • getFullPrecision

      @Stability(Stable) @Nullable default Boolean getFullPrecision()
      Whether to show as many digits as can fit, before rounding.

      Default: false

    • getLayout

      @Stability(Stable) @Nullable default TableLayout getLayout()
      Table layout.

      Default: - TableLayout.HORIZONTAL

    • getLiveData

      @Stability(Stable) @Nullable default Boolean getLiveData()
      Whether the graph should show live data.

      Default: false

    • getMetrics

      @Stability(Stable) @Nullable default List<IMetric> getMetrics()
      Metrics to display in the table.

      Default: - No metrics

    • getPeriod

      @Stability(Stable) @Nullable default Duration 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)

    • getSetPeriodToTimeRange

      @Stability(Stable) @Nullable default Boolean 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

    • getShowUnitsInLabel

      @Stability(Stable) @Nullable default Boolean getShowUnitsInLabel()
      Show the metrics units in the label column.

      Default: - false

    • getStart

      @Stability(Stable) @Nullable default String 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

      @Stability(Stable) @Nullable default String 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

    • getSummary

      @Stability(Stable) @Nullable default TableSummaryProps getSummary()
      Properties for displaying summary columns.

      Default: - no summary columns are shown

    • getThresholds

      @Stability(Stable) @Nullable default List<TableThreshold> getThresholds()
      Thresholds for highlighting table cells.

      Default: - No thresholds

    • builder

      @Stability(Stable) static TableWidgetProps.Builder builder()
      Returns:
      a TableWidgetProps.Builder of TableWidgetProps