Class: Aws::LookoutMetrics::Types::Metric
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutMetrics::Types::Metric
- Defined in:
- gems/aws-sdk-lookoutmetrics/lib/aws-sdk-lookoutmetrics/types.rb
Overview
A calculation made by contrasting a measure and a dimension from your source data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aggregation_function ⇒ String
The function with which the metric is calculated.
-
#metric_name ⇒ String
The name of the metric.
-
#namespace ⇒ String
The namespace for the metric.
Instance Attribute Details
#aggregation_function ⇒ String
The function with which the metric is calculated.
2113 2114 2115 2116 2117 2118 2119 |
# File 'gems/aws-sdk-lookoutmetrics/lib/aws-sdk-lookoutmetrics/types.rb', line 2113 class Metric < Struct.new( :metric_name, :aggregation_function, :namespace) SENSITIVE = [] include Aws::Structure end |