Class: Aws::CloudWatch::Types::MetricMathAnomalyDetector
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::MetricMathAnomalyDetector
- Defined in:
- gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb
Overview
Indicates the CloudWatch math expression that provides the time series the anomaly detector uses as input. The designated math expression must return a single time series.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#metric_data_queries ⇒ Array<Types::MetricDataQuery>
An array of metric data query structures that enables you to create an anomaly detector based on the result of a metric math expression.
Instance Attribute Details
#metric_data_queries ⇒ Array<Types::MetricDataQuery>
An array of metric data query structures that enables you to create
an anomaly detector based on the result of a metric math expression.
Each item in MetricDataQueries
gets a metric or performs a math
expression. One item in MetricDataQueries
is the expression that
provides the time series that the anomaly detector uses as input.
Designate the expression by setting ReturnData
to true
for this
object in the array. For all other expressions and metrics, set
ReturnData
to false
. The designated expression must return a
single time series.
3101 3102 3103 3104 3105 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb', line 3101 class MetricMathAnomalyDetector < Struct.new( :metric_data_queries) SENSITIVE = [] include Aws::Structure end |