All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awscdk.services.cloudwatch.Statistic Maven / Gradle / Ivy

There is a newer version: 1.204.0
Show newest version
package software.amazon.awscdk.services.cloudwatch;

/**
 * Statistic to use over the aggregation period.
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.30.0 (build adae23f)", date = "2021-06-17T00:23:00.273Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.cloudwatch.$Module.class, fqn = "@aws-cdk/aws-cloudwatch.Statistic")
public enum Statistic {
    /**
     * The count (number) of data points used for the statistical calculation.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
    SAMPLE_COUNT,
    /**
     * The value of Sum / SampleCount during the specified period.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
    AVERAGE,
    /**
     * All values submitted for the matching metric added together.
     * 

* This statistic can be useful for determining the total volume of a metric. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) SUM, /** * The lowest value observed during the specified period. *

* You can use this value to determine low volumes of activity for your application. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) MINIMUM, /** * The highest value observed during the specified period. *

* You can use this value to determine high volumes of activity for your application. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) MAXIMUM, }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy