Class: Aws::CloudWatch::Types::Datapoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::Datapoint
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatch/types.rb
Overview
Encapsulates the statistical data that CloudWatch computes from metric data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#average ⇒ Float
The average of the metric values that correspond to the data point.
-
#extended_statistics ⇒ Hash<String,Float>
The percentile statistic for the data point.
-
#maximum ⇒ Float
The maximum metric value for the data point.
-
#minimum ⇒ Float
The minimum metric value for the data point.
-
#sample_count ⇒ Float
The number of metric values that contributed to the aggregate value of this data point.
-
#sum ⇒ Float
The sum of the metric values for the data point.
-
#timestamp ⇒ Time
The time stamp used for the data point.
-
#unit ⇒ String
The standard unit for the data point.
Instance Attribute Details
#average ⇒ Float
The average of the metric values that correspond to the data point.
410 411 412 413 414 415 416 417 418 419 420 421 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 410 class Datapoint < Struct.new( :timestamp, :sample_count, :average, :sum, :minimum, :maximum, :unit, :extended_statistics) SENSITIVE = [] include Aws::Structure end |
#extended_statistics ⇒ Hash<String,Float>
The percentile statistic for the data point.
410 411 412 413 414 415 416 417 418 419 420 421 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 410 class Datapoint < Struct.new( :timestamp, :sample_count, :average, :sum, :minimum, :maximum, :unit, :extended_statistics) SENSITIVE = [] include Aws::Structure end |
#maximum ⇒ Float
The maximum metric value for the data point.
410 411 412 413 414 415 416 417 418 419 420 421 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 410 class Datapoint < Struct.new( :timestamp, :sample_count, :average, :sum, :minimum, :maximum, :unit, :extended_statistics) SENSITIVE = [] include Aws::Structure end |
#minimum ⇒ Float
The minimum metric value for the data point.
410 411 412 413 414 415 416 417 418 419 420 421 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 410 class Datapoint < Struct.new( :timestamp, :sample_count, :average, :sum, :minimum, :maximum, :unit, :extended_statistics) SENSITIVE = [] include Aws::Structure end |
#sample_count ⇒ Float
The number of metric values that contributed to the aggregate value of this data point.
410 411 412 413 414 415 416 417 418 419 420 421 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 410 class Datapoint < Struct.new( :timestamp, :sample_count, :average, :sum, :minimum, :maximum, :unit, :extended_statistics) SENSITIVE = [] include Aws::Structure end |
#sum ⇒ Float
The sum of the metric values for the data point.
410 411 412 413 414 415 416 417 418 419 420 421 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 410 class Datapoint < Struct.new( :timestamp, :sample_count, :average, :sum, :minimum, :maximum, :unit, :extended_statistics) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Time
The time stamp used for the data point.
410 411 412 413 414 415 416 417 418 419 420 421 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 410 class Datapoint < Struct.new( :timestamp, :sample_count, :average, :sum, :minimum, :maximum, :unit, :extended_statistics) SENSITIVE = [] include Aws::Structure end |
#unit ⇒ String
The standard unit for the data point.
410 411 412 413 414 415 416 417 418 419 420 421 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 410 class Datapoint < Struct.new( :timestamp, :sample_count, :average, :sum, :minimum, :maximum, :unit, :extended_statistics) SENSITIVE = [] include Aws::Structure end |