TableSummaryColumn
- class aws_cdk.aws_cloudwatch.TableSummaryColumn(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)
Bases:
Enum
Standard table summary columns.
- ExampleMetadata:
infused
Example:
# dashboard: cloudwatch.Dashboard dashboard.add_widgets(cloudwatch.TableWidget( # ... summary=cloudwatch.TableSummaryProps( columns=[cloudwatch.TableSummaryColumn.AVERAGE], hide_non_summary_columns=True, sticky=True ) ))
Attributes
- AVERAGE
Average of all data points.
- MAXIMUM
Maximum of all data points.
- MINIMUM
Minimum of all data points.
- SUM
Sum of all data points.