DescribeAnomalyDetectorsInput

public struct DescribeAnomalyDetectorsInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • 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.

    Declaration

    Swift

    public let dimensions: [Dimension]?
  • 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.

    Declaration

    Swift

    public let maxResults: Int?
  • 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.

    Declaration

    Swift

    public let metricName: String?
  • Limits the results to only the anomaly detection models that are associated with the specified namespace.

    Declaration

    Swift

    public let namespace: String?
  • Use the token returned by the previous operation to request the next page of results.

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

    public init(dimensions: [Dimension]? = nil, maxResults: Int? = nil, metricName: String? = nil, namespace: String? = nil, nextToken: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws