/** * 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 Rekognition { namespace Model { class AWS_REKOGNITION_API StartTextDetectionResult { public: StartTextDetectionResult(); StartTextDetectionResult(const Aws::AmazonWebServiceResult& result); StartTextDetectionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Identifier for the text detection job. Use JobId to identify the * job in a subsequent call to GetTextDetection.

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

Identifier for the text detection job. Use JobId to identify the * job in a subsequent call to GetTextDetection.

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

Identifier for the text detection job. Use JobId to identify the * job in a subsequent call to GetTextDetection.

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

Identifier for the text detection job. Use JobId to identify the * job in a subsequent call to GetTextDetection.

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

Identifier for the text detection job. Use JobId to identify the * job in a subsequent call to GetTextDetection.

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

Identifier for the text detection job. Use JobId to identify the * job in a subsequent call to GetTextDetection.

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

Identifier for the text detection job. Use JobId to identify the * job in a subsequent call to GetTextDetection.

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