Module: AWSCDK::CloudWatch::Statistic Deprecated
- Defined in:
- cloud_watch/statistic.rb
Overview
Deprecated.
Use one of the factory methods on Stats to produce statistics strings
Statistic to use over the aggregation period.
Constant Summary collapse
- SAMPLE_COUNT =
Deprecated.Note:
Default:
The count (number) of data points used for the statistical calculation.
Jsii::Enum.new("aws-cdk-lib.aws_cloudwatch.Statistic", "SAMPLE_COUNT")
- AVERAGE =
Deprecated.Note:
Default:
The value of Sum / SampleCount during the specified period.
Jsii::Enum.new("aws-cdk-lib.aws_cloudwatch.Statistic", "AVERAGE")
- SUM =
Deprecated.Note:
Default:
All values submitted for the matching metric added together.
This statistic can be useful for determining the total volume of a metric.
Jsii::Enum.new("aws-cdk-lib.aws_cloudwatch.Statistic", "SUM")
- MINIMUM =
Deprecated.Note:
Default:
The lowest value observed during the specified period.
You can use this value to determine low volumes of activity for your application.
Jsii::Enum.new("aws-cdk-lib.aws_cloudwatch.Statistic", "MINIMUM")
- MAXIMUM =
Deprecated.Note:
Default:
The highest value observed during the specified period.
You can use this value to determine high volumes of activity for your application.
Jsii::Enum.new("aws-cdk-lib.aws_cloudwatch.Statistic", "MAXIMUM")