Class: Aws::CloudWatch::Types::StatisticSet
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::StatisticSet
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatch/types.rb
Overview
Represents a set of statistics that describes a specific metric.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum ⇒ Float
The maximum value of the sample set.
-
#minimum ⇒ Float
The minimum value of the sample set.
-
#sample_count ⇒ Float
The number of samples used for the statistic set.
-
#sum ⇒ Float
The sum of values for the sample set.
Instance Attribute Details
#maximum ⇒ Float
The maximum value of the sample set.
4547 4548 4549 4550 4551 4552 4553 4554 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 4547 class StatisticSet < Struct.new( :sample_count, :sum, :minimum, :maximum) SENSITIVE = [] include Aws::Structure end |
#minimum ⇒ Float
The minimum value of the sample set.
4547 4548 4549 4550 4551 4552 4553 4554 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 4547 class StatisticSet < Struct.new( :sample_count, :sum, :minimum, :maximum) SENSITIVE = [] include Aws::Structure end |
#sample_count ⇒ Float
The number of samples used for the statistic set.
4547 4548 4549 4550 4551 4552 4553 4554 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 4547 class StatisticSet < Struct.new( :sample_count, :sum, :minimum, :maximum) SENSITIVE = [] include Aws::Structure end |
#sum ⇒ Float
The sum of values for the sample set.
4547 4548 4549 4550 4551 4552 4553 4554 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 4547 class StatisticSet < Struct.new( :sample_count, :sum, :minimum, :maximum) SENSITIVE = [] include Aws::Structure end |