/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the details of the executed statement.See Also:
AWS
* API Reference
Contains the details of the first fetched page.
*/ inline const Page& GetFirstPage() const{ return m_firstPage; } /** *Contains the details of the first fetched page.
*/ inline bool FirstPageHasBeenSet() const { return m_firstPageHasBeenSet; } /** *Contains the details of the first fetched page.
*/ inline void SetFirstPage(const Page& value) { m_firstPageHasBeenSet = true; m_firstPage = value; } /** *Contains the details of the first fetched page.
*/ inline void SetFirstPage(Page&& value) { m_firstPageHasBeenSet = true; m_firstPage = std::move(value); } /** *Contains the details of the first fetched page.
*/ inline ExecuteStatementResult& WithFirstPage(const Page& value) { SetFirstPage(value); return *this;} /** *Contains the details of the first fetched page.
*/ inline ExecuteStatementResult& WithFirstPage(Page&& value) { SetFirstPage(std::move(value)); return *this;} private: Page m_firstPage; bool m_firstPageHasBeenSet; }; } // namespace Model } // namespace QLDBSession } // namespace Aws