Class: Aws::QLDBSession::Types::FetchPageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDBSession::Types::FetchPageRequest
- Defined in:
- gems/aws-sdk-qldbsession/lib/aws-sdk-qldbsession/types.rb
Overview
Note:
When making an API call, you may pass FetchPageRequest data as a hash:
{
transaction_id: "TransactionId", # required
next_page_token: "PageToken", # required
}
Specifies the details of the page to be fetched.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Specifies the next page token of the page to be fetched.
-
#transaction_id ⇒ String
Specifies the transaction ID of the page to be fetched.
Instance Attribute Details
#next_page_token ⇒ String
Specifies the next page token of the page to be fetched.
238 239 240 241 242 243 |
# File 'gems/aws-sdk-qldbsession/lib/aws-sdk-qldbsession/types.rb', line 238 class FetchPageRequest < Struct.new( :transaction_id, :next_page_token) SENSITIVE = [] include Aws::Structure end |
#transaction_id ⇒ String
Specifies the transaction ID of the page to be fetched.
238 239 240 241 242 243 |
# File 'gems/aws-sdk-qldbsession/lib/aws-sdk-qldbsession/types.rb', line 238 class FetchPageRequest < Struct.new( :transaction_id, :next_page_token) SENSITIVE = [] include Aws::Structure end |