/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies your data quality evaluation criteria.See Also:
* AWS
* API Reference
The name of the data quality evaluation.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the data quality evaluation.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the data quality evaluation.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the data quality evaluation.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the data quality evaluation.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the data quality evaluation.
*/ inline EvaluateDataQualityMultiFrame& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the data quality evaluation.
*/ inline EvaluateDataQualityMultiFrame& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the data quality evaluation.
*/ inline EvaluateDataQualityMultiFrame& WithName(const char* value) { SetName(value); return *this;} /** *The inputs of your data quality evaluation. The first input in this list is * the primary data source.
*/ inline const Aws::VectorThe inputs of your data quality evaluation. The first input in this list is * the primary data source.
*/ inline bool InputsHasBeenSet() const { return m_inputsHasBeenSet; } /** *The inputs of your data quality evaluation. The first input in this list is * the primary data source.
*/ inline void SetInputs(const Aws::VectorThe inputs of your data quality evaluation. The first input in this list is * the primary data source.
*/ inline void SetInputs(Aws::VectorThe inputs of your data quality evaluation. The first input in this list is * the primary data source.
*/ inline EvaluateDataQualityMultiFrame& WithInputs(const Aws::VectorThe inputs of your data quality evaluation. The first input in this list is * the primary data source.
*/ inline EvaluateDataQualityMultiFrame& WithInputs(Aws::VectorThe inputs of your data quality evaluation. The first input in this list is * the primary data source.
*/ inline EvaluateDataQualityMultiFrame& AddInputs(const Aws::String& value) { m_inputsHasBeenSet = true; m_inputs.push_back(value); return *this; } /** *The inputs of your data quality evaluation. The first input in this list is * the primary data source.
*/ inline EvaluateDataQualityMultiFrame& AddInputs(Aws::String&& value) { m_inputsHasBeenSet = true; m_inputs.push_back(std::move(value)); return *this; } /** *The inputs of your data quality evaluation. The first input in this list is * the primary data source.
*/ inline EvaluateDataQualityMultiFrame& AddInputs(const char* value) { m_inputsHasBeenSet = true; m_inputs.push_back(value); return *this; } /** *The aliases of all data sources except primary.
*/ inline const Aws::MapThe aliases of all data sources except primary.
*/ inline bool AdditionalDataSourcesHasBeenSet() const { return m_additionalDataSourcesHasBeenSet; } /** *The aliases of all data sources except primary.
*/ inline void SetAdditionalDataSources(const Aws::MapThe aliases of all data sources except primary.
*/ inline void SetAdditionalDataSources(Aws::MapThe aliases of all data sources except primary.
*/ inline EvaluateDataQualityMultiFrame& WithAdditionalDataSources(const Aws::MapThe aliases of all data sources except primary.
*/ inline EvaluateDataQualityMultiFrame& WithAdditionalDataSources(Aws::MapThe aliases of all data sources except primary.
*/ inline EvaluateDataQualityMultiFrame& AddAdditionalDataSources(const Aws::String& key, const Aws::String& value) { m_additionalDataSourcesHasBeenSet = true; m_additionalDataSources.emplace(key, value); return *this; } /** *The aliases of all data sources except primary.
*/ inline EvaluateDataQualityMultiFrame& AddAdditionalDataSources(Aws::String&& key, const Aws::String& value) { m_additionalDataSourcesHasBeenSet = true; m_additionalDataSources.emplace(std::move(key), value); return *this; } /** *The aliases of all data sources except primary.
*/ inline EvaluateDataQualityMultiFrame& AddAdditionalDataSources(const Aws::String& key, Aws::String&& value) { m_additionalDataSourcesHasBeenSet = true; m_additionalDataSources.emplace(key, std::move(value)); return *this; } /** *The aliases of all data sources except primary.
*/ inline EvaluateDataQualityMultiFrame& AddAdditionalDataSources(Aws::String&& key, Aws::String&& value) { m_additionalDataSourcesHasBeenSet = true; m_additionalDataSources.emplace(std::move(key), std::move(value)); return *this; } /** *The aliases of all data sources except primary.
*/ inline EvaluateDataQualityMultiFrame& AddAdditionalDataSources(const char* key, Aws::String&& value) { m_additionalDataSourcesHasBeenSet = true; m_additionalDataSources.emplace(key, std::move(value)); return *this; } /** *The aliases of all data sources except primary.
*/ inline EvaluateDataQualityMultiFrame& AddAdditionalDataSources(Aws::String&& key, const char* value) { m_additionalDataSourcesHasBeenSet = true; m_additionalDataSources.emplace(std::move(key), value); return *this; } /** *The aliases of all data sources except primary.
*/ inline EvaluateDataQualityMultiFrame& AddAdditionalDataSources(const char* key, const char* value) { m_additionalDataSourcesHasBeenSet = true; m_additionalDataSources.emplace(key, value); return *this; } /** *The ruleset for your data quality evaluation.
*/ inline const Aws::String& GetRuleset() const{ return m_ruleset; } /** *The ruleset for your data quality evaluation.
*/ inline bool RulesetHasBeenSet() const { return m_rulesetHasBeenSet; } /** *The ruleset for your data quality evaluation.
*/ inline void SetRuleset(const Aws::String& value) { m_rulesetHasBeenSet = true; m_ruleset = value; } /** *The ruleset for your data quality evaluation.
*/ inline void SetRuleset(Aws::String&& value) { m_rulesetHasBeenSet = true; m_ruleset = std::move(value); } /** *The ruleset for your data quality evaluation.
*/ inline void SetRuleset(const char* value) { m_rulesetHasBeenSet = true; m_ruleset.assign(value); } /** *The ruleset for your data quality evaluation.
*/ inline EvaluateDataQualityMultiFrame& WithRuleset(const Aws::String& value) { SetRuleset(value); return *this;} /** *The ruleset for your data quality evaluation.
*/ inline EvaluateDataQualityMultiFrame& WithRuleset(Aws::String&& value) { SetRuleset(std::move(value)); return *this;} /** *The ruleset for your data quality evaluation.
*/ inline EvaluateDataQualityMultiFrame& WithRuleset(const char* value) { SetRuleset(value); return *this;} /** *Options to configure how your results are published.
*/ inline const DQResultsPublishingOptions& GetPublishingOptions() const{ return m_publishingOptions; } /** *Options to configure how your results are published.
*/ inline bool PublishingOptionsHasBeenSet() const { return m_publishingOptionsHasBeenSet; } /** *Options to configure how your results are published.
*/ inline void SetPublishingOptions(const DQResultsPublishingOptions& value) { m_publishingOptionsHasBeenSet = true; m_publishingOptions = value; } /** *Options to configure how your results are published.
*/ inline void SetPublishingOptions(DQResultsPublishingOptions&& value) { m_publishingOptionsHasBeenSet = true; m_publishingOptions = std::move(value); } /** *Options to configure how your results are published.
*/ inline EvaluateDataQualityMultiFrame& WithPublishingOptions(const DQResultsPublishingOptions& value) { SetPublishingOptions(value); return *this;} /** *Options to configure how your results are published.
*/ inline EvaluateDataQualityMultiFrame& WithPublishingOptions(DQResultsPublishingOptions&& value) { SetPublishingOptions(std::move(value)); return *this;} /** *Options to configure runtime behavior of the transform.
*/ inline const Aws::MapOptions to configure runtime behavior of the transform.
*/ inline bool AdditionalOptionsHasBeenSet() const { return m_additionalOptionsHasBeenSet; } /** *Options to configure runtime behavior of the transform.
*/ inline void SetAdditionalOptions(const Aws::MapOptions to configure runtime behavior of the transform.
*/ inline void SetAdditionalOptions(Aws::MapOptions to configure runtime behavior of the transform.
*/ inline EvaluateDataQualityMultiFrame& WithAdditionalOptions(const Aws::MapOptions to configure runtime behavior of the transform.
*/ inline EvaluateDataQualityMultiFrame& WithAdditionalOptions(Aws::MapOptions to configure runtime behavior of the transform.
*/ inline EvaluateDataQualityMultiFrame& AddAdditionalOptions(const AdditionalOptionKeys& key, const Aws::String& value) { m_additionalOptionsHasBeenSet = true; m_additionalOptions.emplace(key, value); return *this; } /** *Options to configure runtime behavior of the transform.
*/ inline EvaluateDataQualityMultiFrame& AddAdditionalOptions(AdditionalOptionKeys&& key, const Aws::String& value) { m_additionalOptionsHasBeenSet = true; m_additionalOptions.emplace(std::move(key), value); return *this; } /** *Options to configure runtime behavior of the transform.
*/ inline EvaluateDataQualityMultiFrame& AddAdditionalOptions(const AdditionalOptionKeys& key, Aws::String&& value) { m_additionalOptionsHasBeenSet = true; m_additionalOptions.emplace(key, std::move(value)); return *this; } /** *Options to configure runtime behavior of the transform.
*/ inline EvaluateDataQualityMultiFrame& AddAdditionalOptions(AdditionalOptionKeys&& key, Aws::String&& value) { m_additionalOptionsHasBeenSet = true; m_additionalOptions.emplace(std::move(key), std::move(value)); return *this; } /** *Options to configure runtime behavior of the transform.
*/ inline EvaluateDataQualityMultiFrame& AddAdditionalOptions(AdditionalOptionKeys&& key, const char* value) { m_additionalOptionsHasBeenSet = true; m_additionalOptions.emplace(std::move(key), value); return *this; } /** *Options to configure runtime behavior of the transform.
*/ inline EvaluateDataQualityMultiFrame& AddAdditionalOptions(const AdditionalOptionKeys& key, const char* value) { m_additionalOptionsHasBeenSet = true; m_additionalOptions.emplace(key, value); return *this; } /** *Options to configure how your job will stop if your data quality evaluation * fails.
*/ inline const DQStopJobOnFailureOptions& GetStopJobOnFailureOptions() const{ return m_stopJobOnFailureOptions; } /** *Options to configure how your job will stop if your data quality evaluation * fails.
*/ inline bool StopJobOnFailureOptionsHasBeenSet() const { return m_stopJobOnFailureOptionsHasBeenSet; } /** *Options to configure how your job will stop if your data quality evaluation * fails.
*/ inline void SetStopJobOnFailureOptions(const DQStopJobOnFailureOptions& value) { m_stopJobOnFailureOptionsHasBeenSet = true; m_stopJobOnFailureOptions = value; } /** *Options to configure how your job will stop if your data quality evaluation * fails.
*/ inline void SetStopJobOnFailureOptions(DQStopJobOnFailureOptions&& value) { m_stopJobOnFailureOptionsHasBeenSet = true; m_stopJobOnFailureOptions = std::move(value); } /** *Options to configure how your job will stop if your data quality evaluation * fails.
*/ inline EvaluateDataQualityMultiFrame& WithStopJobOnFailureOptions(const DQStopJobOnFailureOptions& value) { SetStopJobOnFailureOptions(value); return *this;} /** *Options to configure how your job will stop if your data quality evaluation * fails.
*/ inline EvaluateDataQualityMultiFrame& WithStopJobOnFailureOptions(DQStopJobOnFailureOptions&& value) { SetStopJobOnFailureOptions(std::move(value)); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::Vector