/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An HTTP 200 response if the request succeeds, or an error message if the
* request fails.See Also:
AWS
* API Reference
A string that represents the import job ID.
*/ inline const Aws::String& GetJobId() const{ return m_jobId; } /** *A string that represents the import job ID.
*/ inline void SetJobId(const Aws::String& value) { m_jobId = value; } /** *A string that represents the import job ID.
*/ inline void SetJobId(Aws::String&& value) { m_jobId = std::move(value); } /** *A string that represents the import job ID.
*/ inline void SetJobId(const char* value) { m_jobId.assign(value); } /** *A string that represents the import job ID.
*/ inline CreateImportJobResult& WithJobId(const Aws::String& value) { SetJobId(value); return *this;} /** *A string that represents the import job ID.
*/ inline CreateImportJobResult& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;} /** *A string that represents the import job ID.
*/ inline CreateImportJobResult& 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 CreateImportJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateImportJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateImportJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_jobId; Aws::String m_requestId; }; } // namespace Model } // namespace SESV2 } // namespace Aws