/** * 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 Glue { namespace Model { class AWS_GLUE_API GetJobBookmarkResult { public: GetJobBookmarkResult(); GetJobBookmarkResult(const Aws::AmazonWebServiceResult& result); 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;} private: JobBookmarkEntry m_jobBookmarkEntry; }; } // namespace Model } // namespace Glue } // namespace Aws