/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Options to configure how your data quality evaluation results are
* published.See Also:
AWS
* API Reference
The context of the evaluation.
*/ inline const Aws::String& GetEvaluationContext() const{ return m_evaluationContext; } /** *The context of the evaluation.
*/ inline bool EvaluationContextHasBeenSet() const { return m_evaluationContextHasBeenSet; } /** *The context of the evaluation.
*/ inline void SetEvaluationContext(const Aws::String& value) { m_evaluationContextHasBeenSet = true; m_evaluationContext = value; } /** *The context of the evaluation.
*/ inline void SetEvaluationContext(Aws::String&& value) { m_evaluationContextHasBeenSet = true; m_evaluationContext = std::move(value); } /** *The context of the evaluation.
*/ inline void SetEvaluationContext(const char* value) { m_evaluationContextHasBeenSet = true; m_evaluationContext.assign(value); } /** *The context of the evaluation.
*/ inline DQResultsPublishingOptions& WithEvaluationContext(const Aws::String& value) { SetEvaluationContext(value); return *this;} /** *The context of the evaluation.
*/ inline DQResultsPublishingOptions& WithEvaluationContext(Aws::String&& value) { SetEvaluationContext(std::move(value)); return *this;} /** *The context of the evaluation.
*/ inline DQResultsPublishingOptions& WithEvaluationContext(const char* value) { SetEvaluationContext(value); return *this;} /** *The Amazon S3 prefix prepended to the results.
*/ inline const Aws::String& GetResultsS3Prefix() const{ return m_resultsS3Prefix; } /** *The Amazon S3 prefix prepended to the results.
*/ inline bool ResultsS3PrefixHasBeenSet() const { return m_resultsS3PrefixHasBeenSet; } /** *The Amazon S3 prefix prepended to the results.
*/ inline void SetResultsS3Prefix(const Aws::String& value) { m_resultsS3PrefixHasBeenSet = true; m_resultsS3Prefix = value; } /** *The Amazon S3 prefix prepended to the results.
*/ inline void SetResultsS3Prefix(Aws::String&& value) { m_resultsS3PrefixHasBeenSet = true; m_resultsS3Prefix = std::move(value); } /** *The Amazon S3 prefix prepended to the results.
*/ inline void SetResultsS3Prefix(const char* value) { m_resultsS3PrefixHasBeenSet = true; m_resultsS3Prefix.assign(value); } /** *The Amazon S3 prefix prepended to the results.
*/ inline DQResultsPublishingOptions& WithResultsS3Prefix(const Aws::String& value) { SetResultsS3Prefix(value); return *this;} /** *The Amazon S3 prefix prepended to the results.
*/ inline DQResultsPublishingOptions& WithResultsS3Prefix(Aws::String&& value) { SetResultsS3Prefix(std::move(value)); return *this;} /** *The Amazon S3 prefix prepended to the results.
*/ inline DQResultsPublishingOptions& WithResultsS3Prefix(const char* value) { SetResultsS3Prefix(value); return *this;} /** *Enable metrics for your data quality results.
*/ inline bool GetCloudWatchMetricsEnabled() const{ return m_cloudWatchMetricsEnabled; } /** *Enable metrics for your data quality results.
*/ inline bool CloudWatchMetricsEnabledHasBeenSet() const { return m_cloudWatchMetricsEnabledHasBeenSet; } /** *Enable metrics for your data quality results.
*/ inline void SetCloudWatchMetricsEnabled(bool value) { m_cloudWatchMetricsEnabledHasBeenSet = true; m_cloudWatchMetricsEnabled = value; } /** *Enable metrics for your data quality results.
*/ inline DQResultsPublishingOptions& WithCloudWatchMetricsEnabled(bool value) { SetCloudWatchMetricsEnabled(value); return *this;} /** *Enable publishing for your data quality results.
*/ inline bool GetResultsPublishingEnabled() const{ return m_resultsPublishingEnabled; } /** *Enable publishing for your data quality results.
*/ inline bool ResultsPublishingEnabledHasBeenSet() const { return m_resultsPublishingEnabledHasBeenSet; } /** *Enable publishing for your data quality results.
*/ inline void SetResultsPublishingEnabled(bool value) { m_resultsPublishingEnabledHasBeenSet = true; m_resultsPublishingEnabled = value; } /** *Enable publishing for your data quality results.
*/ inline DQResultsPublishingOptions& WithResultsPublishingEnabled(bool value) { SetResultsPublishingEnabled(value); return *this;} private: Aws::String m_evaluationContext; bool m_evaluationContextHasBeenSet = false; Aws::String m_resultsS3Prefix; bool m_resultsS3PrefixHasBeenSet = false; bool m_cloudWatchMetricsEnabled; bool m_cloudWatchMetricsEnabledHasBeenSet = false; bool m_resultsPublishingEnabled; bool m_resultsPublishingEnabledHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws