/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents a request for information about an import job using the import job
* ID.See Also:
AWS
* API Reference
The ID of the import job.
*/ inline const Aws::String& GetJobId() const{ return m_jobId; } /** *The ID of the import job.
*/ inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; } /** *The ID of the import job.
*/ inline void SetJobId(const Aws::String& value) { m_jobIdHasBeenSet = true; m_jobId = value; } /** *The ID of the import job.
*/ inline void SetJobId(Aws::String&& value) { m_jobIdHasBeenSet = true; m_jobId = std::move(value); } /** *The ID of the import job.
*/ inline void SetJobId(const char* value) { m_jobIdHasBeenSet = true; m_jobId.assign(value); } /** *The ID of the import job.
*/ inline GetImportJobRequest& WithJobId(const Aws::String& value) { SetJobId(value); return *this;} /** *The ID of the import job.
*/ inline GetImportJobRequest& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;} /** *The ID of the import job.
*/ inline GetImportJobRequest& WithJobId(const char* value) { SetJobId(value); return *this;} private: Aws::String m_jobId; bool m_jobIdHasBeenSet = false; }; } // namespace Model } // namespace SESV2 } // namespace Aws