/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about a detector's configuration.See
* Also:
AWS
* API Reference
The interval at which the detector analyzes its source data.
*/ inline const Frequency& GetAnomalyDetectorFrequency() const{ return m_anomalyDetectorFrequency; } /** *The interval at which the detector analyzes its source data.
*/ inline bool AnomalyDetectorFrequencyHasBeenSet() const { return m_anomalyDetectorFrequencyHasBeenSet; } /** *The interval at which the detector analyzes its source data.
*/ inline void SetAnomalyDetectorFrequency(const Frequency& value) { m_anomalyDetectorFrequencyHasBeenSet = true; m_anomalyDetectorFrequency = value; } /** *The interval at which the detector analyzes its source data.
*/ inline void SetAnomalyDetectorFrequency(Frequency&& value) { m_anomalyDetectorFrequencyHasBeenSet = true; m_anomalyDetectorFrequency = std::move(value); } /** *The interval at which the detector analyzes its source data.
*/ inline AnomalyDetectorConfigSummary& WithAnomalyDetectorFrequency(const Frequency& value) { SetAnomalyDetectorFrequency(value); return *this;} /** *The interval at which the detector analyzes its source data.
*/ inline AnomalyDetectorConfigSummary& WithAnomalyDetectorFrequency(Frequency&& value) { SetAnomalyDetectorFrequency(std::move(value)); return *this;} private: Frequency m_anomalyDetectorFrequency; bool m_anomalyDetectorFrequencyHasBeenSet = false; }; } // namespace Model } // namespace LookoutMetrics } // namespace Aws