/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the page that was fetched.See Also:
AWS
* API Reference
Contains details of the fetched page.
*/ inline const Page& GetPage() const{ return m_page; } /** *Contains details of the fetched page.
*/ inline bool PageHasBeenSet() const { return m_pageHasBeenSet; } /** *Contains details of the fetched page.
*/ inline void SetPage(const Page& value) { m_pageHasBeenSet = true; m_page = value; } /** *Contains details of the fetched page.
*/ inline void SetPage(Page&& value) { m_pageHasBeenSet = true; m_page = std::move(value); } /** *Contains details of the fetched page.
*/ inline FetchPageResult& WithPage(const Page& value) { SetPage(value); return *this;} /** *Contains details of the fetched page.
*/ inline FetchPageResult& WithPage(Page&& value) { SetPage(std::move(value)); return *this;} private: Page m_page; bool m_pageHasBeenSet; }; } // namespace Model } // namespace QLDBSession } // namespace Aws