Class: Aws::CloudWatch::Types::Metric
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::Metric
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatch/types.rb
Overview
Represents a specific metric.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dimensions ⇒ Array<Types::Dimension>
The dimensions for the metric.
-
#metric_name ⇒ String
The name of the metric.
-
#namespace ⇒ String
The namespace of the metric.
Instance Attribute Details
#dimensions ⇒ Array<Types::Dimension>
The dimensions for the metric.
2454 2455 2456 2457 2458 2459 2460 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 2454 class Metric < Struct.new( :namespace, :metric_name, :dimensions) SENSITIVE = [] include Aws::Structure end |