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

The identifier generated for the job. To get the status of a job, use this * identifier with the StartICD10CMInferenceJob operation.

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

The identifier generated for the job. To get the status of a job, use this * identifier with the StartICD10CMInferenceJob operation.

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

The identifier generated for the job. To get the status of a job, use this * identifier with the StartICD10CMInferenceJob operation.

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

The identifier generated for the job. To get the status of a job, use this * identifier with the StartICD10CMInferenceJob operation.

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

The identifier generated for the job. To get the status of a job, use this * identifier with the StartICD10CMInferenceJob operation.

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

The identifier generated for the job. To get the status of a job, use this * identifier with the StartICD10CMInferenceJob operation.

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

The identifier generated for the job. To get the status of a job, use this * identifier with the StartICD10CMInferenceJob operation.

*/ inline StartICD10CMInferenceJobResult& WithJobId(const char* value) { SetJobId(value); return *this;} private: Aws::String m_jobId; }; } // namespace Model } // namespace ComprehendMedical } // namespace Aws