/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Glue { namespace Model { class GetJobBookmarkResult { public: AWS_GLUE_API GetJobBookmarkResult(); AWS_GLUE_API GetJobBookmarkResult(const Aws::AmazonWebServiceResult& result); AWS_GLUE_API GetJobBookmarkResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A structure that defines a point that a job can resume processing.

*/ inline const JobBookmarkEntry& GetJobBookmarkEntry() const{ return m_jobBookmarkEntry; } /** *

A structure that defines a point that a job can resume processing.

*/ inline void SetJobBookmarkEntry(const JobBookmarkEntry& value) { m_jobBookmarkEntry = value; } /** *

A structure that defines a point that a job can resume processing.

*/ inline void SetJobBookmarkEntry(JobBookmarkEntry&& value) { m_jobBookmarkEntry = std::move(value); } /** *

A structure that defines a point that a job can resume processing.

*/ inline GetJobBookmarkResult& WithJobBookmarkEntry(const JobBookmarkEntry& value) { SetJobBookmarkEntry(value); return *this;} /** *

A structure that defines a point that a job can resume processing.

*/ inline GetJobBookmarkResult& WithJobBookmarkEntry(JobBookmarkEntry&& value) { SetJobBookmarkEntry(std::move(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 GetJobBookmarkResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetJobBookmarkResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetJobBookmarkResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: JobBookmarkEntry m_jobBookmarkEntry; Aws::String m_requestId; }; } // namespace Model } // namespace Glue } // namespace Aws