Class: Aws::MWAA::Types::StatisticSet

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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].

[1]: docs.aws.amazon.com/mwaa/latest/userguide/cw-metrics.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maximumFloat

**Internal only**. The maximum value of the sample set.

Returns:

  • (Float)


1393
1394
1395
1396
1397
1398
1399
1400
# File 'lib/aws-sdk-mwaa/types.rb', line 1393

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

#minimumFloat

**Internal only**. The minimum value of the sample set.

Returns:

  • (Float)


1393
1394
1395
1396
1397
1398
1399
1400
# File 'lib/aws-sdk-mwaa/types.rb', line 1393

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

#sample_countInteger

**Internal only**. The number of samples used for the statistic set.

Returns:

  • (Integer)


1393
1394
1395
1396
1397
1398
1399
1400
# File 'lib/aws-sdk-mwaa/types.rb', line 1393

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

#sumFloat

**Internal only**. The sum of values for the sample set.

Returns:

  • (Float)


1393
1394
1395
1396
1397
1398
1399
1400
# File 'lib/aws-sdk-mwaa/types.rb', line 1393

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