/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Glue { namespace Model { /** *

Specifies your data quality evaluation criteria.

See Also:

* AWS * API Reference

*/ class EvaluateDataQualityMultiFrame { public: AWS_GLUE_API EvaluateDataQualityMultiFrame(); AWS_GLUE_API EvaluateDataQualityMultiFrame(Aws::Utils::Json::JsonView jsonValue); AWS_GLUE_API EvaluateDataQualityMultiFrame& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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::Vector& GetInputs() const{ return m_inputs; } /** *

The 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::Vector& value) { m_inputsHasBeenSet = true; m_inputs = value; } /** *

The inputs of your data quality evaluation. The first input in this list is * the primary data source.

*/ inline void SetInputs(Aws::Vector&& value) { m_inputsHasBeenSet = true; m_inputs = std::move(value); } /** *

The inputs of your data quality evaluation. The first input in this list is * the primary data source.

*/ inline EvaluateDataQualityMultiFrame& WithInputs(const Aws::Vector& value) { SetInputs(value); return *this;} /** *

The inputs of your data quality evaluation. The first input in this list is * the primary data source.

*/ inline EvaluateDataQualityMultiFrame& WithInputs(Aws::Vector&& value) { SetInputs(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 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::Map& GetAdditionalDataSources() const{ return m_additionalDataSources; } /** *

The 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::Map& value) { m_additionalDataSourcesHasBeenSet = true; m_additionalDataSources = value; } /** *

The aliases of all data sources except primary.

*/ inline void SetAdditionalDataSources(Aws::Map&& value) { m_additionalDataSourcesHasBeenSet = true; m_additionalDataSources = std::move(value); } /** *

The aliases of all data sources except primary.

*/ inline EvaluateDataQualityMultiFrame& WithAdditionalDataSources(const Aws::Map& value) { SetAdditionalDataSources(value); return *this;} /** *

The aliases of all data sources except primary.

*/ inline EvaluateDataQualityMultiFrame& WithAdditionalDataSources(Aws::Map&& value) { SetAdditionalDataSources(std::move(value)); return *this;} /** *

The 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::Map& GetAdditionalOptions() const{ return m_additionalOptions; } /** *

Options 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::Map& value) { m_additionalOptionsHasBeenSet = true; m_additionalOptions = value; } /** *

Options to configure runtime behavior of the transform.

*/ inline void SetAdditionalOptions(Aws::Map&& value) { m_additionalOptionsHasBeenSet = true; m_additionalOptions = std::move(value); } /** *

Options to configure runtime behavior of the transform.

*/ inline EvaluateDataQualityMultiFrame& WithAdditionalOptions(const Aws::Map& value) { SetAdditionalOptions(value); return *this;} /** *

Options to configure runtime behavior of the transform.

*/ inline EvaluateDataQualityMultiFrame& WithAdditionalOptions(Aws::Map&& value) { SetAdditionalOptions(std::move(value)); return *this;} /** *

Options 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 m_inputs; bool m_inputsHasBeenSet = false; Aws::Map m_additionalDataSources; bool m_additionalDataSourcesHasBeenSet = false; Aws::String m_ruleset; bool m_rulesetHasBeenSet = false; DQResultsPublishingOptions m_publishingOptions; bool m_publishingOptionsHasBeenSet = false; Aws::Map m_additionalOptions; bool m_additionalOptionsHasBeenSet = false; DQStopJobOnFailureOptions m_stopJobOnFailureOptions; bool m_stopJobOnFailureOptionsHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws