You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CloudWatch::Types::DescribeAnomalyDetectorsInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DescribeAnomalyDetectorsInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  next_token: "NextToken",
  max_results: 1,
  namespace: "Namespace",
  metric_name: "MetricName",
  dimensions: [
    {
      name: "DimensionName", # required
      value: "DimensionValue", # required
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#dimensionsArray<Types::Dimension>

Limits the results to only the anomaly detection models that are associated with the specified metric dimensions. If there are multiple metrics that have these dimensions and have anomaly detection models associated, they\'re all returned.

Returns:

  • (Array<Types::Dimension>)

    Limits the results to only the anomaly detection models that are associated with the specified metric dimensions.

#max_resultsInteger

The maximum number of results to return in one operation. The maximum value that you can specify is 100.

To retrieve the remaining results, make another call with the returned NextToken value.

Returns:

  • (Integer)

    The maximum number of results to return in one operation.

#metric_nameString

Limits the results to only the anomaly detection models that are associated with the specified metric name. If there are multiple metrics with this name in different namespaces that have anomaly detection models, they\'re all returned.

Returns:

  • (String)

    Limits the results to only the anomaly detection models that are associated with the specified metric name.

#namespaceString

Limits the results to only the anomaly detection models that are associated with the specified namespace.

Returns:

  • (String)

    Limits the results to only the anomaly detection models that are associated with the specified namespace.

#next_tokenString

Use the token returned by the previous operation to request the next page of results.

Returns:

  • (String)

    Use the token returned by the previous operation to request the next page of results.