/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An array of DataQualityMetric
objects that describes one or more
* data quality metrics.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the data quality metric array.
*/ inline const Aws::String& GetMetricSetArn() const{ return m_metricSetArn; } /** *The Amazon Resource Name (ARN) of the data quality metric array.
*/ inline bool MetricSetArnHasBeenSet() const { return m_metricSetArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the data quality metric array.
*/ inline void SetMetricSetArn(const Aws::String& value) { m_metricSetArnHasBeenSet = true; m_metricSetArn = value; } /** *The Amazon Resource Name (ARN) of the data quality metric array.
*/ inline void SetMetricSetArn(Aws::String&& value) { m_metricSetArnHasBeenSet = true; m_metricSetArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the data quality metric array.
*/ inline void SetMetricSetArn(const char* value) { m_metricSetArnHasBeenSet = true; m_metricSetArn.assign(value); } /** *The Amazon Resource Name (ARN) of the data quality metric array.
*/ inline MetricSetDataQualityMetric& WithMetricSetArn(const Aws::String& value) { SetMetricSetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the data quality metric array.
*/ inline MetricSetDataQualityMetric& WithMetricSetArn(Aws::String&& value) { SetMetricSetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the data quality metric array.
*/ inline MetricSetDataQualityMetric& WithMetricSetArn(const char* value) { SetMetricSetArn(value); return *this;} /** *The array of data quality metrics contained in the data quality metric * set.
*/ inline const Aws::VectorThe array of data quality metrics contained in the data quality metric * set.
*/ inline bool DataQualityMetricListHasBeenSet() const { return m_dataQualityMetricListHasBeenSet; } /** *The array of data quality metrics contained in the data quality metric * set.
*/ inline void SetDataQualityMetricList(const Aws::VectorThe array of data quality metrics contained in the data quality metric * set.
*/ inline void SetDataQualityMetricList(Aws::VectorThe array of data quality metrics contained in the data quality metric * set.
*/ inline MetricSetDataQualityMetric& WithDataQualityMetricList(const Aws::VectorThe array of data quality metrics contained in the data quality metric * set.
*/ inline MetricSetDataQualityMetric& WithDataQualityMetricList(Aws::VectorThe array of data quality metrics contained in the data quality metric * set.
*/ inline MetricSetDataQualityMetric& AddDataQualityMetricList(const DataQualityMetric& value) { m_dataQualityMetricListHasBeenSet = true; m_dataQualityMetricList.push_back(value); return *this; } /** *The array of data quality metrics contained in the data quality metric * set.
*/ inline MetricSetDataQualityMetric& AddDataQualityMetricList(DataQualityMetric&& value) { m_dataQualityMetricListHasBeenSet = true; m_dataQualityMetricList.push_back(std::move(value)); return *this; } private: Aws::String m_metricSetArn; bool m_metricSetArnHasBeenSet = false; Aws::Vector