You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CloudWatch::Types::StatisticSet

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing StatisticSet as input to an Aws::Client method, you can use a vanilla Hash:

{
  sample_count: 1.0, # required
  sum: 1.0, # required
  minimum: 1.0, # required
  maximum: 1.0, # required
}

Represents a set of statistics that describes a specific metric.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#maximumFloat

The maximum value of the sample set.

Returns:

  • (Float)

    The maximum value of the sample set.

#minimumFloat

The minimum value of the sample set.

Returns:

  • (Float)

    The minimum value of the sample set.

#sample_countFloat

The number of samples used for the statistic set.

Returns:

  • (Float)

    The number of samples used for the statistic set.

#sumFloat

The sum of values for the sample set.

Returns:

  • (Float)

    The sum of values for the sample set.