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

Additional run options you can specify for an evaluation run.

See * Also:

AWS * API Reference

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

Whether or not to enable CloudWatch metrics.

*/ inline bool GetCloudWatchMetricsEnabled() const{ return m_cloudWatchMetricsEnabled; } /** *

Whether or not to enable CloudWatch metrics.

*/ inline bool CloudWatchMetricsEnabledHasBeenSet() const { return m_cloudWatchMetricsEnabledHasBeenSet; } /** *

Whether or not to enable CloudWatch metrics.

*/ inline void SetCloudWatchMetricsEnabled(bool value) { m_cloudWatchMetricsEnabledHasBeenSet = true; m_cloudWatchMetricsEnabled = value; } /** *

Whether or not to enable CloudWatch metrics.

*/ inline DataQualityEvaluationRunAdditionalRunOptions& WithCloudWatchMetricsEnabled(bool value) { SetCloudWatchMetricsEnabled(value); return *this;} /** *

Prefix for Amazon S3 to store results.

*/ inline const Aws::String& GetResultsS3Prefix() const{ return m_resultsS3Prefix; } /** *

Prefix for Amazon S3 to store results.

*/ inline bool ResultsS3PrefixHasBeenSet() const { return m_resultsS3PrefixHasBeenSet; } /** *

Prefix for Amazon S3 to store results.

*/ inline void SetResultsS3Prefix(const Aws::String& value) { m_resultsS3PrefixHasBeenSet = true; m_resultsS3Prefix = value; } /** *

Prefix for Amazon S3 to store results.

*/ inline void SetResultsS3Prefix(Aws::String&& value) { m_resultsS3PrefixHasBeenSet = true; m_resultsS3Prefix = std::move(value); } /** *

Prefix for Amazon S3 to store results.

*/ inline void SetResultsS3Prefix(const char* value) { m_resultsS3PrefixHasBeenSet = true; m_resultsS3Prefix.assign(value); } /** *

Prefix for Amazon S3 to store results.

*/ inline DataQualityEvaluationRunAdditionalRunOptions& WithResultsS3Prefix(const Aws::String& value) { SetResultsS3Prefix(value); return *this;} /** *

Prefix for Amazon S3 to store results.

*/ inline DataQualityEvaluationRunAdditionalRunOptions& WithResultsS3Prefix(Aws::String&& value) { SetResultsS3Prefix(std::move(value)); return *this;} /** *

Prefix for Amazon S3 to store results.

*/ inline DataQualityEvaluationRunAdditionalRunOptions& WithResultsS3Prefix(const char* value) { SetResultsS3Prefix(value); return *this;} private: bool m_cloudWatchMetricsEnabled; bool m_cloudWatchMetricsEnabledHasBeenSet = false; Aws::String m_resultsS3Prefix; bool m_resultsS3PrefixHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws