Class: Aws::PI::Types::MetricKeyDataPoints
- Inherits:
-
Struct
- Object
- Struct
- Aws::PI::Types::MetricKeyDataPoints
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pi/types.rb
Overview
A time-ordered series of data points, corresponding to a dimension of a Performance Insights metric.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_points ⇒ Array<Types::DataPoint>
An array of timestamp-value pairs, representing measurements over a period of time.
-
#key ⇒ Types::ResponseResourceMetricKey
The dimensions to which the data points apply.
Instance Attribute Details
#data_points ⇒ Array<Types::DataPoint>
An array of timestamp-value pairs, representing measurements over a period of time.
1472 1473 1474 1475 1476 1477 |
# File 'lib/aws-sdk-pi/types.rb', line 1472 class MetricKeyDataPoints < Struct.new( :key, :data_points) SENSITIVE = [] include Aws::Structure end |
#key ⇒ Types::ResponseResourceMetricKey
The dimensions to which the data points apply.
1472 1473 1474 1475 1476 1477 |
# File 'lib/aws-sdk-pi/types.rb', line 1472 class MetricKeyDataPoints < Struct.new( :key, :data_points) SENSITIVE = [] include Aws::Structure end |