Class: Aws::MWAA::Types::StatisticSet
- Inherits:
-
Struct
- Object
- Struct
- Aws::MWAA::Types::StatisticSet
- Defined in:
- gems/aws-sdk-mwaa/lib/aws-sdk-mwaa/types.rb
Overview
Internal only. Represents a set of statistics that describe a specific metric. To learn more about the metrics published to Amazon CloudWatch, see Amazon MWAA performance metrics in Amazon CloudWatch.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum ⇒ Float
Internal only.
-
#minimum ⇒ Float
Internal only.
-
#sample_count ⇒ Integer
Internal only.
-
#sum ⇒ Float
Internal only.
Instance Attribute Details
#maximum ⇒ Float
Internal only. The maximum value of the sample set.
1403 1404 1405 1406 1407 1408 1409 1410 |
# File 'gems/aws-sdk-mwaa/lib/aws-sdk-mwaa/types.rb', line 1403 class StatisticSet < Struct.new( :sample_count, :sum, :minimum, :maximum) SENSITIVE = [] include Aws::Structure end |
#minimum ⇒ Float
Internal only. The minimum value of the sample set.
1403 1404 1405 1406 1407 1408 1409 1410 |
# File 'gems/aws-sdk-mwaa/lib/aws-sdk-mwaa/types.rb', line 1403 class StatisticSet < Struct.new( :sample_count, :sum, :minimum, :maximum) SENSITIVE = [] include Aws::Structure end |
#sample_count ⇒ Integer
Internal only. The number of samples used for the statistic set.
1403 1404 1405 1406 1407 1408 1409 1410 |
# File 'gems/aws-sdk-mwaa/lib/aws-sdk-mwaa/types.rb', line 1403 class StatisticSet < Struct.new( :sample_count, :sum, :minimum, :maximum) SENSITIVE = [] include Aws::Structure end |
#sum ⇒ Float
Internal only. The sum of values for the sample set.
1403 1404 1405 1406 1407 1408 1409 1410 |
# File 'gems/aws-sdk-mwaa/lib/aws-sdk-mwaa/types.rb', line 1403 class StatisticSet < Struct.new( :sample_count, :sum, :minimum, :maximum) SENSITIVE = [] include Aws::Structure end |