/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A pair that contains metric values at the respective timestamp.See
* Also:
AWS
* API Reference
A Timestamp
that specifies the time the event occurred.
A Timestamp
that specifies the time the event occurred.
A Timestamp
that specifies the time the event occurred.
A Timestamp
that specifies the time the event occurred.
A Timestamp
that specifies the time the event occurred.
A Timestamp
that specifies the time the event occurred.
Value of the anomalous metric data point at respective Timestamp.
*/ inline double GetMetricValue() const{ return m_metricValue; } /** *Value of the anomalous metric data point at respective Timestamp.
*/ inline bool MetricValueHasBeenSet() const { return m_metricValueHasBeenSet; } /** *Value of the anomalous metric data point at respective Timestamp.
*/ inline void SetMetricValue(double value) { m_metricValueHasBeenSet = true; m_metricValue = value; } /** *Value of the anomalous metric data point at respective Timestamp.
*/ inline TimestampMetricValuePair& WithMetricValue(double value) { SetMetricValue(value); return *this;} private: Aws::Utils::DateTime m_timestamp; bool m_timestampHasBeenSet = false; double m_metricValue; bool m_metricValueHasBeenSet = false; }; } // namespace Model } // namespace DevOpsGuru } // namespace Aws