/** * 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 LookoutEquipment { namespace Model { /** *

Provides information about a specified data ingestion job, including dataset * information, data ingestion configuration, and status.

See Also:

* AWS * API Reference

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

Indicates the job ID of the data ingestion job.

*/ inline const Aws::String& GetJobId() const{ return m_jobId; } /** *

Indicates the job ID of the data ingestion job.

*/ inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; } /** *

Indicates the job ID of the data ingestion job.

*/ inline void SetJobId(const Aws::String& value) { m_jobIdHasBeenSet = true; m_jobId = value; } /** *

Indicates the job ID of the data ingestion job.

*/ inline void SetJobId(Aws::String&& value) { m_jobIdHasBeenSet = true; m_jobId = std::move(value); } /** *

Indicates the job ID of the data ingestion job.

*/ inline void SetJobId(const char* value) { m_jobIdHasBeenSet = true; m_jobId.assign(value); } /** *

Indicates the job ID of the data ingestion job.

*/ inline DataIngestionJobSummary& WithJobId(const Aws::String& value) { SetJobId(value); return *this;} /** *

Indicates the job ID of the data ingestion job.

*/ inline DataIngestionJobSummary& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;} /** *

Indicates the job ID of the data ingestion job.

*/ inline DataIngestionJobSummary& WithJobId(const char* value) { SetJobId(value); return *this;} /** *

The name of the dataset used for the data ingestion job.

*/ inline const Aws::String& GetDatasetName() const{ return m_datasetName; } /** *

The name of the dataset used for the data ingestion job.

*/ inline bool DatasetNameHasBeenSet() const { return m_datasetNameHasBeenSet; } /** *

The name of the dataset used for the data ingestion job.

*/ inline void SetDatasetName(const Aws::String& value) { m_datasetNameHasBeenSet = true; m_datasetName = value; } /** *

The name of the dataset used for the data ingestion job.

*/ inline void SetDatasetName(Aws::String&& value) { m_datasetNameHasBeenSet = true; m_datasetName = std::move(value); } /** *

The name of the dataset used for the data ingestion job.

*/ inline void SetDatasetName(const char* value) { m_datasetNameHasBeenSet = true; m_datasetName.assign(value); } /** *

The name of the dataset used for the data ingestion job.

*/ inline DataIngestionJobSummary& WithDatasetName(const Aws::String& value) { SetDatasetName(value); return *this;} /** *

The name of the dataset used for the data ingestion job.

*/ inline DataIngestionJobSummary& WithDatasetName(Aws::String&& value) { SetDatasetName(std::move(value)); return *this;} /** *

The name of the dataset used for the data ingestion job.

*/ inline DataIngestionJobSummary& WithDatasetName(const char* value) { SetDatasetName(value); return *this;} /** *

The Amazon Resource Name (ARN) of the dataset used in the data ingestion job. *

*/ inline const Aws::String& GetDatasetArn() const{ return m_datasetArn; } /** *

The Amazon Resource Name (ARN) of the dataset used in the data ingestion job. *

*/ inline bool DatasetArnHasBeenSet() const { return m_datasetArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the dataset used in the data ingestion job. *

*/ inline void SetDatasetArn(const Aws::String& value) { m_datasetArnHasBeenSet = true; m_datasetArn = value; } /** *

The Amazon Resource Name (ARN) of the dataset used in the data ingestion job. *

*/ inline void SetDatasetArn(Aws::String&& value) { m_datasetArnHasBeenSet = true; m_datasetArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the dataset used in the data ingestion job. *

*/ inline void SetDatasetArn(const char* value) { m_datasetArnHasBeenSet = true; m_datasetArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the dataset used in the data ingestion job. *

*/ inline DataIngestionJobSummary& WithDatasetArn(const Aws::String& value) { SetDatasetArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the dataset used in the data ingestion job. *

*/ inline DataIngestionJobSummary& WithDatasetArn(Aws::String&& value) { SetDatasetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the dataset used in the data ingestion job. *

*/ inline DataIngestionJobSummary& WithDatasetArn(const char* value) { SetDatasetArn(value); return *this;} /** *

Specifies information for the input data for the data inference job, * including data Amazon S3 location parameters.

*/ inline const IngestionInputConfiguration& GetIngestionInputConfiguration() const{ return m_ingestionInputConfiguration; } /** *

Specifies information for the input data for the data inference job, * including data Amazon S3 location parameters.

*/ inline bool IngestionInputConfigurationHasBeenSet() const { return m_ingestionInputConfigurationHasBeenSet; } /** *

Specifies information for the input data for the data inference job, * including data Amazon S3 location parameters.

*/ inline void SetIngestionInputConfiguration(const IngestionInputConfiguration& value) { m_ingestionInputConfigurationHasBeenSet = true; m_ingestionInputConfiguration = value; } /** *

Specifies information for the input data for the data inference job, * including data Amazon S3 location parameters.

*/ inline void SetIngestionInputConfiguration(IngestionInputConfiguration&& value) { m_ingestionInputConfigurationHasBeenSet = true; m_ingestionInputConfiguration = std::move(value); } /** *

Specifies information for the input data for the data inference job, * including data Amazon S3 location parameters.

*/ inline DataIngestionJobSummary& WithIngestionInputConfiguration(const IngestionInputConfiguration& value) { SetIngestionInputConfiguration(value); return *this;} /** *

Specifies information for the input data for the data inference job, * including data Amazon S3 location parameters.

*/ inline DataIngestionJobSummary& WithIngestionInputConfiguration(IngestionInputConfiguration&& value) { SetIngestionInputConfiguration(std::move(value)); return *this;} /** *

Indicates the status of the data ingestion job.

*/ inline const IngestionJobStatus& GetStatus() const{ return m_status; } /** *

Indicates the status of the data ingestion job.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

Indicates the status of the data ingestion job.

*/ inline void SetStatus(const IngestionJobStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *

Indicates the status of the data ingestion job.

*/ inline void SetStatus(IngestionJobStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

Indicates the status of the data ingestion job.

*/ inline DataIngestionJobSummary& WithStatus(const IngestionJobStatus& value) { SetStatus(value); return *this;} /** *

Indicates the status of the data ingestion job.

*/ inline DataIngestionJobSummary& WithStatus(IngestionJobStatus&& value) { SetStatus(std::move(value)); return *this;} private: Aws::String m_jobId; bool m_jobIdHasBeenSet = false; Aws::String m_datasetName; bool m_datasetNameHasBeenSet = false; Aws::String m_datasetArn; bool m_datasetArnHasBeenSet = false; IngestionInputConfiguration m_ingestionInputConfiguration; bool m_ingestionInputConfigurationHasBeenSet = false; IngestionJobStatus m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace LookoutEquipment } // namespace Aws