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/StopEntitiesDetectionJobResult.h

117 lines
3.7 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 StopEntitiesDetectionJobResult
{
public:
StopEntitiesDetectionJobResult();
StopEntitiesDetectionJobResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
StopEntitiesDetectionJobResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The identifier of the entities detection job to stop.</p>
*/
inline const Aws::String& GetJobId() const{ return m_jobId; }
/**
* <p>The identifier of the entities detection job to stop.</p>
*/
inline void SetJobId(const Aws::String& value) { m_jobId = value; }
/**
* <p>The identifier of the entities detection job to stop.</p>
*/
inline void SetJobId(Aws::String&& value) { m_jobId = std::move(value); }
/**
* <p>The identifier of the entities detection job to stop.</p>
*/
inline void SetJobId(const char* value) { m_jobId.assign(value); }
/**
* <p>The identifier of the entities detection job to stop.</p>
*/
inline StopEntitiesDetectionJobResult& WithJobId(const Aws::String& value) { SetJobId(value); return *this;}
/**
* <p>The identifier of the entities detection job to stop.</p>
*/
inline StopEntitiesDetectionJobResult& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;}
/**
* <p>The identifier of the entities detection job to stop.</p>
*/
inline StopEntitiesDetectionJobResult& WithJobId(const char* value) { SetJobId(value); return *this;}
/**
* <p>Either <code>STOP_REQUESTED</code> if the job is currently running, or
* <code>STOPPED</code> if the job was previously stopped with the
* <code>StopEntitiesDetectionJob</code> operation.</p>
*/
inline const JobStatus& GetJobStatus() const{ return m_jobStatus; }
/**
* <p>Either <code>STOP_REQUESTED</code> if the job is currently running, or
* <code>STOPPED</code> if the job was previously stopped with the
* <code>StopEntitiesDetectionJob</code> operation.</p>
*/
inline void SetJobStatus(const JobStatus& value) { m_jobStatus = value; }
/**
* <p>Either <code>STOP_REQUESTED</code> if the job is currently running, or
* <code>STOPPED</code> if the job was previously stopped with the
* <code>StopEntitiesDetectionJob</code> operation.</p>
*/
inline void SetJobStatus(JobStatus&& value) { m_jobStatus = std::move(value); }
/**
* <p>Either <code>STOP_REQUESTED</code> if the job is currently running, or
* <code>STOPPED</code> if the job was previously stopped with the
* <code>StopEntitiesDetectionJob</code> operation.</p>
*/
inline StopEntitiesDetectionJobResult& WithJobStatus(const JobStatus& value) { SetJobStatus(value); return *this;}
/**
* <p>Either <code>STOP_REQUESTED</code> if the job is currently running, or
* <code>STOPPED</code> if the job was previously stopped with the
* <code>StopEntitiesDetectionJob</code> operation.</p>
*/
inline StopEntitiesDetectionJobResult& WithJobStatus(JobStatus&& value) { SetJobStatus(std::move(value)); return *this;}
private:
Aws::String m_jobId;
JobStatus m_jobStatus;
};
} // namespace Model
} // namespace Comprehend
} // namespace Aws