Class: Aws::QLDBSession::Types::Page

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-qldbsession/lib/aws-sdk-qldbsession/types.rb

Overview

Contains details of the fetched page.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_page_tokenString

The token of the next page.

Returns:

  • (String)


318
319
320
321
322
323
# File 'gems/aws-sdk-qldbsession/lib/aws-sdk-qldbsession/types.rb', line 318

class Page < Struct.new(
  :values,
  :next_page_token)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<Types::ValueHolder>

A structure that contains values in multiple encoding formats.

Returns:



318
319
320
321
322
323
# File 'gems/aws-sdk-qldbsession/lib/aws-sdk-qldbsession/types.rb', line 318

class Page < Struct.new(
  :values,
  :next_page_token)
  SENSITIVE = []
  include Aws::Structure
end