This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-comprehend/include/aws/comprehend/model/StartKeyPhrasesDetectionJobResult.h

134 lines
5.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/comprehend/Comprehend_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/comprehend/model/JobStatus.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace Comprehend
{
namespace Model
{
class AWS_COMPREHEND_API StartKeyPhrasesDetectionJobResult
{
public:
StartKeyPhrasesDetectionJobResult();
StartKeyPhrasesDetectionJobResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
StartKeyPhrasesDetectionJobResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The identifier generated for the job. To get the status of a job, use this
* identifier with the operation.</p>
*/
inline const Aws::String& GetJobId() const{ return m_jobId; }
/**
* <p>The identifier generated for the job. To get the status of a job, use this
* identifier with the operation.</p>
*/
inline void SetJobId(const Aws::String& value) { m_jobId = value; }
/**
* <p>The identifier generated for the job. To get the status of a job, use this
* identifier with the operation.</p>
*/
inline void SetJobId(Aws::String&& value) { m_jobId = std::move(value); }
/**
* <p>The identifier generated for the job. To get the status of a job, use this
* identifier with the operation.</p>
*/
inline void SetJobId(const char* value) { m_jobId.assign(value); }
/**
* <p>The identifier generated for the job. To get the status of a job, use this
* identifier with the operation.</p>
*/
inline StartKeyPhrasesDetectionJobResult& WithJobId(const Aws::String& value) { SetJobId(value); return *this;}
/**
* <p>The identifier generated for the job. To get the status of a job, use this
* identifier with the operation.</p>
*/
inline StartKeyPhrasesDetectionJobResult& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;}
/**
* <p>The identifier generated for the job. To get the status of a job, use this
* identifier with the operation.</p>
*/
inline StartKeyPhrasesDetectionJobResult& WithJobId(const char* value) { SetJobId(value); return *this;}
/**
* <p>The status of the job. </p> <ul> <li> <p>SUBMITTED - The job has been
* received and is queued for processing.</p> </li> <li> <p>IN_PROGRESS - Amazon
* Comprehend is processing the job.</p> </li> <li> <p>COMPLETED - The job was
* successfully completed and the output is available.</p> </li> <li> <p>FAILED -
* The job did not complete. To get details, use the operation.</p> </li> </ul>
*/
inline const JobStatus& GetJobStatus() const{ return m_jobStatus; }
/**
* <p>The status of the job. </p> <ul> <li> <p>SUBMITTED - The job has been
* received and is queued for processing.</p> </li> <li> <p>IN_PROGRESS - Amazon
* Comprehend is processing the job.</p> </li> <li> <p>COMPLETED - The job was
* successfully completed and the output is available.</p> </li> <li> <p>FAILED -
* The job did not complete. To get details, use the operation.</p> </li> </ul>
*/
inline void SetJobStatus(const JobStatus& value) { m_jobStatus = value; }
/**
* <p>The status of the job. </p> <ul> <li> <p>SUBMITTED - The job has been
* received and is queued for processing.</p> </li> <li> <p>IN_PROGRESS - Amazon
* Comprehend is processing the job.</p> </li> <li> <p>COMPLETED - The job was
* successfully completed and the output is available.</p> </li> <li> <p>FAILED -
* The job did not complete. To get details, use the operation.</p> </li> </ul>
*/
inline void SetJobStatus(JobStatus&& value) { m_jobStatus = std::move(value); }
/**
* <p>The status of the job. </p> <ul> <li> <p>SUBMITTED - The job has been
* received and is queued for processing.</p> </li> <li> <p>IN_PROGRESS - Amazon
* Comprehend is processing the job.</p> </li> <li> <p>COMPLETED - The job was
* successfully completed and the output is available.</p> </li> <li> <p>FAILED -
* The job did not complete. To get details, use the operation.</p> </li> </ul>
*/
inline StartKeyPhrasesDetectionJobResult& WithJobStatus(const JobStatus& value) { SetJobStatus(value); return *this;}
/**
* <p>The status of the job. </p> <ul> <li> <p>SUBMITTED - The job has been
* received and is queued for processing.</p> </li> <li> <p>IN_PROGRESS - Amazon
* Comprehend is processing the job.</p> </li> <li> <p>COMPLETED - The job was
* successfully completed and the output is available.</p> </li> <li> <p>FAILED -
* The job did not complete. To get details, use the operation.</p> </li> </ul>
*/
inline StartKeyPhrasesDetectionJobResult& WithJobStatus(JobStatus&& value) { SetJobStatus(std::move(value)); return *this;}
private:
Aws::String m_jobId;
JobStatus m_jobStatus;
};
} // namespace Model
} // namespace Comprehend
} // namespace Aws