85 lines
2.7 KiB
C++
85 lines
2.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/comprehendmedical/ComprehendMedical_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace ComprehendMedical
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_COMPREHENDMEDICAL_API StartPHIDetectionJobResult
|
|
{
|
|
public:
|
|
StartPHIDetectionJobResult();
|
|
StartPHIDetectionJobResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
StartPHIDetectionJobResult& 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 <code>DescribePHIDetectionJob</code> 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 <code>DescribePHIDetectionJob</code> 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 <code>DescribePHIDetectionJob</code> 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 <code>DescribePHIDetectionJob</code> 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 <code>DescribePHIDetectionJob</code> operation.</p>
|
|
*/
|
|
inline StartPHIDetectionJobResult& 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 <code>DescribePHIDetectionJob</code> operation.</p>
|
|
*/
|
|
inline StartPHIDetectionJobResult& 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 <code>DescribePHIDetectionJob</code> operation.</p>
|
|
*/
|
|
inline StartPHIDetectionJobResult& WithJobId(const char* value) { SetJobId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_jobId;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace ComprehendMedical
|
|
} // namespace Aws
|