/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/textract/Textract_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 Textract { namespace Model { class StartDocumentTextDetectionResult { public: AWS_TEXTRACT_API StartDocumentTextDetectionResult(); AWS_TEXTRACT_API StartDocumentTextDetectionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_TEXTRACT_API StartDocumentTextDetectionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>The identifier of the text detection job for the document. Use * <code>JobId</code> to identify the job in a subsequent call to * <code>GetDocumentTextDetection</code>. A <code>JobId</code> value is only valid * for 7 days.</p> */ inline const Aws::String& GetJobId() const{ return m_jobId; } /** * <p>The identifier of the text detection job for the document. Use * <code>JobId</code> to identify the job in a subsequent call to * <code>GetDocumentTextDetection</code>. A <code>JobId</code> value is only valid * for 7 days.</p> */ inline void SetJobId(const Aws::String& value) { m_jobId = value; } /** * <p>The identifier of the text detection job for the document. Use * <code>JobId</code> to identify the job in a subsequent call to * <code>GetDocumentTextDetection</code>. A <code>JobId</code> value is only valid * for 7 days.</p> */ inline void SetJobId(Aws::String&& value) { m_jobId = std::move(value); } /** * <p>The identifier of the text detection job for the document. Use * <code>JobId</code> to identify the job in a subsequent call to * <code>GetDocumentTextDetection</code>. A <code>JobId</code> value is only valid * for 7 days.</p> */ inline void SetJobId(const char* value) { m_jobId.assign(value); } /** * <p>The identifier of the text detection job for the document. Use * <code>JobId</code> to identify the job in a subsequent call to * <code>GetDocumentTextDetection</code>. A <code>JobId</code> value is only valid * for 7 days.</p> */ inline StartDocumentTextDetectionResult& WithJobId(const Aws::String& value) { SetJobId(value); return *this;} /** * <p>The identifier of the text detection job for the document. Use * <code>JobId</code> to identify the job in a subsequent call to * <code>GetDocumentTextDetection</code>. A <code>JobId</code> value is only valid * for 7 days.</p> */ inline StartDocumentTextDetectionResult& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;} /** * <p>The identifier of the text detection job for the document. Use * <code>JobId</code> to identify the job in a subsequent call to * <code>GetDocumentTextDetection</code>. A <code>JobId</code> value is only valid * for 7 days.</p> */ inline StartDocumentTextDetectionResult& WithJobId(const char* value) { SetJobId(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline StartDocumentTextDetectionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartDocumentTextDetectionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartDocumentTextDetectionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_jobId; Aws::String m_requestId; }; } // namespace Model } // namespace Textract } // namespace Aws