/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the details of the page to be fetched.See Also:
* AWS
* API Reference
Specifies the transaction ID of the page to be fetched.
*/ inline const Aws::String& GetTransactionId() const{ return m_transactionId; } /** *Specifies the transaction ID of the page to be fetched.
*/ inline bool TransactionIdHasBeenSet() const { return m_transactionIdHasBeenSet; } /** *Specifies the transaction ID of the page to be fetched.
*/ inline void SetTransactionId(const Aws::String& value) { m_transactionIdHasBeenSet = true; m_transactionId = value; } /** *Specifies the transaction ID of the page to be fetched.
*/ inline void SetTransactionId(Aws::String&& value) { m_transactionIdHasBeenSet = true; m_transactionId = std::move(value); } /** *Specifies the transaction ID of the page to be fetched.
*/ inline void SetTransactionId(const char* value) { m_transactionIdHasBeenSet = true; m_transactionId.assign(value); } /** *Specifies the transaction ID of the page to be fetched.
*/ inline FetchPageRequest& WithTransactionId(const Aws::String& value) { SetTransactionId(value); return *this;} /** *Specifies the transaction ID of the page to be fetched.
*/ inline FetchPageRequest& WithTransactionId(Aws::String&& value) { SetTransactionId(std::move(value)); return *this;} /** *Specifies the transaction ID of the page to be fetched.
*/ inline FetchPageRequest& WithTransactionId(const char* value) { SetTransactionId(value); return *this;} /** *Specifies the next page token of the page to be fetched.
*/ inline const Aws::String& GetNextPageToken() const{ return m_nextPageToken; } /** *Specifies the next page token of the page to be fetched.
*/ inline bool NextPageTokenHasBeenSet() const { return m_nextPageTokenHasBeenSet; } /** *Specifies the next page token of the page to be fetched.
*/ inline void SetNextPageToken(const Aws::String& value) { m_nextPageTokenHasBeenSet = true; m_nextPageToken = value; } /** *Specifies the next page token of the page to be fetched.
*/ inline void SetNextPageToken(Aws::String&& value) { m_nextPageTokenHasBeenSet = true; m_nextPageToken = std::move(value); } /** *Specifies the next page token of the page to be fetched.
*/ inline void SetNextPageToken(const char* value) { m_nextPageTokenHasBeenSet = true; m_nextPageToken.assign(value); } /** *Specifies the next page token of the page to be fetched.
*/ inline FetchPageRequest& WithNextPageToken(const Aws::String& value) { SetNextPageToken(value); return *this;} /** *Specifies the next page token of the page to be fetched.
*/ inline FetchPageRequest& WithNextPageToken(Aws::String&& value) { SetNextPageToken(std::move(value)); return *this;} /** *Specifies the next page token of the page to be fetched.
*/ inline FetchPageRequest& WithNextPageToken(const char* value) { SetNextPageToken(value); return *this;} private: Aws::String m_transactionId; bool m_transactionIdHasBeenSet = false; Aws::String m_nextPageToken; bool m_nextPageTokenHasBeenSet = false; }; } // namespace Model } // namespace QLDBSession } // namespace Aws