/** * 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 StopPHIDetectionJobResult { public: StopPHIDetectionJobResult(); StopPHIDetectionJobResult(const Aws::AmazonWebServiceResult& result); StopPHIDetectionJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The identifier of the PHI detection job that was stopped.

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

The identifier of the PHI detection job that was stopped.

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

The identifier of the PHI detection job that was stopped.

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

The identifier of the PHI detection job that was stopped.

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

The identifier of the PHI detection job that was stopped.

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

The identifier of the PHI detection job that was stopped.

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

The identifier of the PHI detection job that was stopped.

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