/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace LookoutEquipment { namespace Model { class StartDataIngestionJobResult { public: AWS_LOOKOUTEQUIPMENT_API StartDataIngestionJobResult(); AWS_LOOKOUTEQUIPMENT_API StartDataIngestionJobResult(const Aws::AmazonWebServiceResult& result); AWS_LOOKOUTEQUIPMENT_API StartDataIngestionJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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 void SetJobId(const Aws::String& value) { m_jobId = value; } /** *

Indicates the job ID of the data ingestion job.

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

Indicates the job ID of the data ingestion job.

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

Indicates the job ID of the data ingestion job.

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

Indicates the job ID of the data ingestion job.

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

Indicates the job ID of the data ingestion job.

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

Indicates the status of the StartDataIngestionJob operation. *

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

Indicates the status of the StartDataIngestionJob operation. *

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

Indicates the status of the StartDataIngestionJob operation. *

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

Indicates the status of the StartDataIngestionJob operation. *

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

Indicates the status of the StartDataIngestionJob operation. *

*/ inline StartDataIngestionJobResult& WithStatus(IngestionJobStatus&& value) { SetStatus(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline StartDataIngestionJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartDataIngestionJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartDataIngestionJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_jobId; IngestionJobStatus m_status; Aws::String m_requestId; }; } // namespace Model } // namespace LookoutEquipment } // namespace Aws