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

Describes a data quality result.

See Also:

AWS * API Reference

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

The unique result ID for this data quality result.

*/ inline const Aws::String& GetResultId() const{ return m_resultId; } /** *

The unique result ID for this data quality result.

*/ inline bool ResultIdHasBeenSet() const { return m_resultIdHasBeenSet; } /** *

The unique result ID for this data quality result.

*/ inline void SetResultId(const Aws::String& value) { m_resultIdHasBeenSet = true; m_resultId = value; } /** *

The unique result ID for this data quality result.

*/ inline void SetResultId(Aws::String&& value) { m_resultIdHasBeenSet = true; m_resultId = std::move(value); } /** *

The unique result ID for this data quality result.

*/ inline void SetResultId(const char* value) { m_resultIdHasBeenSet = true; m_resultId.assign(value); } /** *

The unique result ID for this data quality result.

*/ inline DataQualityResultDescription& WithResultId(const Aws::String& value) { SetResultId(value); return *this;} /** *

The unique result ID for this data quality result.

*/ inline DataQualityResultDescription& WithResultId(Aws::String&& value) { SetResultId(std::move(value)); return *this;} /** *

The unique result ID for this data quality result.

*/ inline DataQualityResultDescription& WithResultId(const char* value) { SetResultId(value); return *this;} /** *

The table name associated with the data quality result.

*/ inline const DataSource& GetDataSource() const{ return m_dataSource; } /** *

The table name associated with the data quality result.

*/ inline bool DataSourceHasBeenSet() const { return m_dataSourceHasBeenSet; } /** *

The table name associated with the data quality result.

*/ inline void SetDataSource(const DataSource& value) { m_dataSourceHasBeenSet = true; m_dataSource = value; } /** *

The table name associated with the data quality result.

*/ inline void SetDataSource(DataSource&& value) { m_dataSourceHasBeenSet = true; m_dataSource = std::move(value); } /** *

The table name associated with the data quality result.

*/ inline DataQualityResultDescription& WithDataSource(const DataSource& value) { SetDataSource(value); return *this;} /** *

The table name associated with the data quality result.

*/ inline DataQualityResultDescription& WithDataSource(DataSource&& value) { SetDataSource(std::move(value)); return *this;} /** *

The job name associated with the data quality result.

*/ inline const Aws::String& GetJobName() const{ return m_jobName; } /** *

The job name associated with the data quality result.

*/ inline bool JobNameHasBeenSet() const { return m_jobNameHasBeenSet; } /** *

The job name associated with the data quality result.

*/ inline void SetJobName(const Aws::String& value) { m_jobNameHasBeenSet = true; m_jobName = value; } /** *

The job name associated with the data quality result.

*/ inline void SetJobName(Aws::String&& value) { m_jobNameHasBeenSet = true; m_jobName = std::move(value); } /** *

The job name associated with the data quality result.

*/ inline void SetJobName(const char* value) { m_jobNameHasBeenSet = true; m_jobName.assign(value); } /** *

The job name associated with the data quality result.

*/ inline DataQualityResultDescription& WithJobName(const Aws::String& value) { SetJobName(value); return *this;} /** *

The job name associated with the data quality result.

*/ inline DataQualityResultDescription& WithJobName(Aws::String&& value) { SetJobName(std::move(value)); return *this;} /** *

The job name associated with the data quality result.

*/ inline DataQualityResultDescription& WithJobName(const char* value) { SetJobName(value); return *this;} /** *

The job run ID associated with the data quality result.

*/ inline const Aws::String& GetJobRunId() const{ return m_jobRunId; } /** *

The job run ID associated with the data quality result.

*/ inline bool JobRunIdHasBeenSet() const { return m_jobRunIdHasBeenSet; } /** *

The job run ID associated with the data quality result.

*/ inline void SetJobRunId(const Aws::String& value) { m_jobRunIdHasBeenSet = true; m_jobRunId = value; } /** *

The job run ID associated with the data quality result.

*/ inline void SetJobRunId(Aws::String&& value) { m_jobRunIdHasBeenSet = true; m_jobRunId = std::move(value); } /** *

The job run ID associated with the data quality result.

*/ inline void SetJobRunId(const char* value) { m_jobRunIdHasBeenSet = true; m_jobRunId.assign(value); } /** *

The job run ID associated with the data quality result.

*/ inline DataQualityResultDescription& WithJobRunId(const Aws::String& value) { SetJobRunId(value); return *this;} /** *

The job run ID associated with the data quality result.

*/ inline DataQualityResultDescription& WithJobRunId(Aws::String&& value) { SetJobRunId(std::move(value)); return *this;} /** *

The job run ID associated with the data quality result.

*/ inline DataQualityResultDescription& WithJobRunId(const char* value) { SetJobRunId(value); return *this;} /** *

The time that the run started for this data quality result.

*/ inline const Aws::Utils::DateTime& GetStartedOn() const{ return m_startedOn; } /** *

The time that the run started for this data quality result.

*/ inline bool StartedOnHasBeenSet() const { return m_startedOnHasBeenSet; } /** *

The time that the run started for this data quality result.

*/ inline void SetStartedOn(const Aws::Utils::DateTime& value) { m_startedOnHasBeenSet = true; m_startedOn = value; } /** *

The time that the run started for this data quality result.

*/ inline void SetStartedOn(Aws::Utils::DateTime&& value) { m_startedOnHasBeenSet = true; m_startedOn = std::move(value); } /** *

The time that the run started for this data quality result.

*/ inline DataQualityResultDescription& WithStartedOn(const Aws::Utils::DateTime& value) { SetStartedOn(value); return *this;} /** *

The time that the run started for this data quality result.

*/ inline DataQualityResultDescription& WithStartedOn(Aws::Utils::DateTime&& value) { SetStartedOn(std::move(value)); return *this;} private: Aws::String m_resultId; bool m_resultIdHasBeenSet = false; DataSource m_dataSource; bool m_dataSourceHasBeenSet = false; Aws::String m_jobName; bool m_jobNameHasBeenSet = false; Aws::String m_jobRunId; bool m_jobRunIdHasBeenSet = false; Aws::Utils::DateTime m_startedOn; bool m_startedOnHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws