Class: Aws::LookoutMetrics::Types::AnomalyDetectorConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutMetrics::Types::AnomalyDetectorConfig
- Defined in:
- gems/aws-sdk-lookoutmetrics/lib/aws-sdk-lookoutmetrics/types.rb
Overview
Note:
When making an API call, you may pass AnomalyDetectorConfig data as a hash:
{
anomaly_detector_frequency: "P1D", # accepts P1D, PT1H, PT10M, PT5M
}
Contains information about a detector's configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#anomaly_detector_frequency ⇒ String
The frequency at which the detector analyzes its source data.
Instance Attribute Details
#anomaly_detector_frequency ⇒ String
The frequency at which the detector analyzes its source data.
255 256 257 258 259 |
# File 'gems/aws-sdk-lookoutmetrics/lib/aws-sdk-lookoutmetrics/types.rb', line 255 class AnomalyDetectorConfig < Struct.new( :anomaly_detector_frequency) SENSITIVE = [] include Aws::Structure end |