Class: Aws::PrometheusService::Types::AnomalyDetectorConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::PrometheusService::Types::AnomalyDetectorConfiguration
- Defined in:
- gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb
Overview
Note:
AnomalyDetectorConfiguration is a union - when making an API calls you must set exactly one of the members.
Note:
AnomalyDetectorConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AnomalyDetectorConfiguration corresponding to the set member.
The configuration for the anomaly detection algorithm.
Direct Known Subclasses
Defined Under Namespace
Classes: RandomCutForest, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#random_cut_forest ⇒ Types::RandomCutForestConfiguration
The Random Cut Forest algorithm configuration for anomaly detection.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#random_cut_forest ⇒ Types::RandomCutForestConfiguration
The Random Cut Forest algorithm configuration for anomaly detection.
113 114 115 116 117 118 119 120 121 122 |
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb', line 113 class AnomalyDetectorConfiguration < Struct.new( :random_cut_forest, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class RandomCutForest < AnomalyDetectorConfiguration; end class Unknown < AnomalyDetectorConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
113 114 115 |
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb', line 113 def unknown @unknown end |