/** * 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 Athena { namespace Model { class GetNotebookMetadataResult { public: AWS_ATHENA_API GetNotebookMetadataResult(); AWS_ATHENA_API GetNotebookMetadataResult(const Aws::AmazonWebServiceResult& result); AWS_ATHENA_API GetNotebookMetadataResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The metadata that is returned for the specified notebook ID.

*/ inline const NotebookMetadata& GetNotebookMetadata() const{ return m_notebookMetadata; } /** *

The metadata that is returned for the specified notebook ID.

*/ inline void SetNotebookMetadata(const NotebookMetadata& value) { m_notebookMetadata = value; } /** *

The metadata that is returned for the specified notebook ID.

*/ inline void SetNotebookMetadata(NotebookMetadata&& value) { m_notebookMetadata = std::move(value); } /** *

The metadata that is returned for the specified notebook ID.

*/ inline GetNotebookMetadataResult& WithNotebookMetadata(const NotebookMetadata& value) { SetNotebookMetadata(value); return *this;} /** *

The metadata that is returned for the specified notebook ID.

*/ inline GetNotebookMetadataResult& WithNotebookMetadata(NotebookMetadata&& value) { SetNotebookMetadata(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 GetNotebookMetadataResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetNotebookMetadataResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetNotebookMetadataResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: NotebookMetadata m_notebookMetadata; Aws::String m_requestId; }; } // namespace Model } // namespace Athena } // namespace Aws