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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudwatch/types.rb

Overview

Note:

When making an API call, you may pass StatisticSet data as a 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.

Instance Attribute Summary collapse

Instance Attribute Details

#maximumFloat

The maximum value of the sample set.

Returns:

  • (Float)


1994
1995
1996
1997
1998
1999
2000
# File 'lib/aws-sdk-cloudwatch/types.rb', line 1994

class StatisticSet < Struct.new(
  :sample_count,
  :sum,
  :minimum,
  :maximum)
  include Aws::Structure
end

#minimumFloat

The minimum value of the sample set.

Returns:

  • (Float)


1994
1995
1996
1997
1998
1999
2000
# File 'lib/aws-sdk-cloudwatch/types.rb', line 1994

class StatisticSet < Struct.new(
  :sample_count,
  :sum,
  :minimum,
  :maximum)
  include Aws::Structure
end

#sample_countFloat

The number of samples used for the statistic set.

Returns:

  • (Float)


1994
1995
1996
1997
1998
1999
2000
# File 'lib/aws-sdk-cloudwatch/types.rb', line 1994

class StatisticSet < Struct.new(
  :sample_count,
  :sum,
  :minimum,
  :maximum)
  include Aws::Structure
end

#sumFloat

The sum of values for the sample set.

Returns:

  • (Float)


1994
1995
1996
1997
1998
1999
2000
# File 'lib/aws-sdk-cloudwatch/types.rb', line 1994

class StatisticSet < Struct.new(
  :sample_count,
  :sum,
  :minimum,
  :maximum)
  include Aws::Structure
end