Class: Aws::QLDBSession::Types::FetchPageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDBSession::Types::FetchPageRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-qldbsession/types.rb
Overview
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.
208 209 210 211 212 213 |
# File 'lib/aws-sdk-qldbsession/types.rb', line 208 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.
208 209 210 211 212 213 |
# File 'lib/aws-sdk-qldbsession/types.rb', line 208 class FetchPageRequest < Struct.new( :transaction_id, :next_page_token) SENSITIVE = [] include Aws::Structure end |