/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace LookoutMetrics { namespace Model { class GetDataQualityMetricsResult { public: AWS_LOOKOUTMETRICS_API GetDataQualityMetricsResult(); AWS_LOOKOUTMETRICS_API GetDataQualityMetricsResult(const Aws::AmazonWebServiceResult& result); AWS_LOOKOUTMETRICS_API GetDataQualityMetricsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list of the data quality metrics for the AnomalyDetectorArn * that you requested.

*/ inline const Aws::Vector& GetAnomalyDetectorDataQualityMetricList() const{ return m_anomalyDetectorDataQualityMetricList; } /** *

A list of the data quality metrics for the AnomalyDetectorArn * that you requested.

*/ inline void SetAnomalyDetectorDataQualityMetricList(const Aws::Vector& value) { m_anomalyDetectorDataQualityMetricList = value; } /** *

A list of the data quality metrics for the AnomalyDetectorArn * that you requested.

*/ inline void SetAnomalyDetectorDataQualityMetricList(Aws::Vector&& value) { m_anomalyDetectorDataQualityMetricList = std::move(value); } /** *

A list of the data quality metrics for the AnomalyDetectorArn * that you requested.

*/ inline GetDataQualityMetricsResult& WithAnomalyDetectorDataQualityMetricList(const Aws::Vector& value) { SetAnomalyDetectorDataQualityMetricList(value); return *this;} /** *

A list of the data quality metrics for the AnomalyDetectorArn * that you requested.

*/ inline GetDataQualityMetricsResult& WithAnomalyDetectorDataQualityMetricList(Aws::Vector&& value) { SetAnomalyDetectorDataQualityMetricList(std::move(value)); return *this;} /** *

A list of the data quality metrics for the AnomalyDetectorArn * that you requested.

*/ inline GetDataQualityMetricsResult& AddAnomalyDetectorDataQualityMetricList(const AnomalyDetectorDataQualityMetric& value) { m_anomalyDetectorDataQualityMetricList.push_back(value); return *this; } /** *

A list of the data quality metrics for the AnomalyDetectorArn * that you requested.

*/ inline GetDataQualityMetricsResult& AddAnomalyDetectorDataQualityMetricList(AnomalyDetectorDataQualityMetric&& value) { m_anomalyDetectorDataQualityMetricList.push_back(std::move(value)); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetDataQualityMetricsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetDataQualityMetricsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetDataQualityMetricsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_anomalyDetectorDataQualityMetricList; Aws::String m_requestId; }; } // namespace Model } // namespace LookoutMetrics } // namespace Aws