/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the result of a data quality rule recommendation run.See
* Also:
AWS
* API Reference
The unique run identifier associated with this run.
*/ inline const Aws::String& GetRunId() const{ return m_runId; } /** *The unique run identifier associated with this run.
*/ inline bool RunIdHasBeenSet() const { return m_runIdHasBeenSet; } /** *The unique run identifier associated with this run.
*/ inline void SetRunId(const Aws::String& value) { m_runIdHasBeenSet = true; m_runId = value; } /** *The unique run identifier associated with this run.
*/ inline void SetRunId(Aws::String&& value) { m_runIdHasBeenSet = true; m_runId = std::move(value); } /** *The unique run identifier associated with this run.
*/ inline void SetRunId(const char* value) { m_runIdHasBeenSet = true; m_runId.assign(value); } /** *The unique run identifier associated with this run.
*/ inline DataQualityRuleRecommendationRunDescription& WithRunId(const Aws::String& value) { SetRunId(value); return *this;} /** *The unique run identifier associated with this run.
*/ inline DataQualityRuleRecommendationRunDescription& WithRunId(Aws::String&& value) { SetRunId(std::move(value)); return *this;} /** *The unique run identifier associated with this run.
*/ inline DataQualityRuleRecommendationRunDescription& WithRunId(const char* value) { SetRunId(value); return *this;} /** *The status for this run.
*/ inline const TaskStatusType& GetStatus() const{ return m_status; } /** *The status for this run.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *The status for this run.
*/ inline void SetStatus(const TaskStatusType& value) { m_statusHasBeenSet = true; m_status = value; } /** *The status for this run.
*/ inline void SetStatus(TaskStatusType&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *The status for this run.
*/ inline DataQualityRuleRecommendationRunDescription& WithStatus(const TaskStatusType& value) { SetStatus(value); return *this;} /** *The status for this run.
*/ inline DataQualityRuleRecommendationRunDescription& WithStatus(TaskStatusType&& value) { SetStatus(std::move(value)); return *this;} /** *The date and time when this run started.
*/ inline const Aws::Utils::DateTime& GetStartedOn() const{ return m_startedOn; } /** *The date and time when this run started.
*/ inline bool StartedOnHasBeenSet() const { return m_startedOnHasBeenSet; } /** *The date and time when this run started.
*/ inline void SetStartedOn(const Aws::Utils::DateTime& value) { m_startedOnHasBeenSet = true; m_startedOn = value; } /** *The date and time when this run started.
*/ inline void SetStartedOn(Aws::Utils::DateTime&& value) { m_startedOnHasBeenSet = true; m_startedOn = std::move(value); } /** *The date and time when this run started.
*/ inline DataQualityRuleRecommendationRunDescription& WithStartedOn(const Aws::Utils::DateTime& value) { SetStartedOn(value); return *this;} /** *The date and time when this run started.
*/ inline DataQualityRuleRecommendationRunDescription& WithStartedOn(Aws::Utils::DateTime&& value) { SetStartedOn(std::move(value)); return *this;} /** *The data source (Glue table) associated with the recommendation run.
*/ inline const DataSource& GetDataSource() const{ return m_dataSource; } /** *The data source (Glue table) associated with the recommendation run.
*/ inline bool DataSourceHasBeenSet() const { return m_dataSourceHasBeenSet; } /** *The data source (Glue table) associated with the recommendation run.
*/ inline void SetDataSource(const DataSource& value) { m_dataSourceHasBeenSet = true; m_dataSource = value; } /** *The data source (Glue table) associated with the recommendation run.
*/ inline void SetDataSource(DataSource&& value) { m_dataSourceHasBeenSet = true; m_dataSource = std::move(value); } /** *The data source (Glue table) associated with the recommendation run.
*/ inline DataQualityRuleRecommendationRunDescription& WithDataSource(const DataSource& value) { SetDataSource(value); return *this;} /** *The data source (Glue table) associated with the recommendation run.
*/ inline DataQualityRuleRecommendationRunDescription& WithDataSource(DataSource&& value) { SetDataSource(std::move(value)); return *this;} private: Aws::String m_runId; bool m_runIdHasBeenSet = false; TaskStatusType m_status; bool m_statusHasBeenSet = false; Aws::Utils::DateTime m_startedOn; bool m_startedOnHasBeenSet = false; DataSource m_dataSource; bool m_dataSourceHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws