/** * 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 ResetJobBookmarkResult { public: AWS_GLUE_API ResetJobBookmarkResult(); AWS_GLUE_API ResetJobBookmarkResult(const Aws::AmazonWebServiceResult& result); AWS_GLUE_API ResetJobBookmarkResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The reset bookmark entry.

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

The reset bookmark entry.

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

The reset bookmark entry.

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

The reset bookmark entry.

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

The reset bookmark entry.

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