Class: Aws::PI::Types::DimensionKeyDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::PI::Types::DimensionKeyDescription
- Defined in:
- gems/aws-sdk-pi/lib/aws-sdk-pi/types.rb
Overview
An object that includes the requested dimension key values and aggregated metric values within a dimension group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#additional_metrics ⇒ Hash<String,Float>
A map that contains the value for each additional metric.
-
#dimensions ⇒ Hash<String,String>
A map of name-value pairs for the dimensions in the group.
-
#partitions ⇒ Array<Float>
If
PartitionBy
was specified,PartitionKeys
contains the dimensions that were. -
#total ⇒ Float
The aggregated metric value for the dimensions, over the requested time range.
Instance Attribute Details
#additional_metrics ⇒ Hash<String,Float>
A map that contains the value for each additional metric.
680 681 682 683 684 685 686 687 |
# File 'gems/aws-sdk-pi/lib/aws-sdk-pi/types.rb', line 680 class DimensionKeyDescription < Struct.new( :dimensions, :total, :additional_metrics, :partitions) SENSITIVE = [] include Aws::Structure end |
#dimensions ⇒ Hash<String,String>
A map of name-value pairs for the dimensions in the group.
680 681 682 683 684 685 686 687 |
# File 'gems/aws-sdk-pi/lib/aws-sdk-pi/types.rb', line 680 class DimensionKeyDescription < Struct.new( :dimensions, :total, :additional_metrics, :partitions) SENSITIVE = [] include Aws::Structure end |
#partitions ⇒ Array<Float>
If PartitionBy
was specified, PartitionKeys
contains the
dimensions that were.
680 681 682 683 684 685 686 687 |
# File 'gems/aws-sdk-pi/lib/aws-sdk-pi/types.rb', line 680 class DimensionKeyDescription < Struct.new( :dimensions, :total, :additional_metrics, :partitions) SENSITIVE = [] include Aws::Structure end |
#total ⇒ Float
The aggregated metric value for the dimensions, over the requested time range.
680 681 682 683 684 685 686 687 |
# File 'gems/aws-sdk-pi/lib/aws-sdk-pi/types.rb', line 680 class DimensionKeyDescription < Struct.new( :dimensions, :total, :additional_metrics, :partitions) SENSITIVE = [] include Aws::Structure end |