Class: Aws::QLDB::Types::ListLedgersRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-qldb/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of results to return in a single ‘ListLedgers` request. (The actual number of results returned might be fewer.)

Returns:

  • (Integer)


1066
1067
1068
1069
1070
1071
# File 'lib/aws-sdk-qldb/types.rb', line 1066

class ListLedgersRequest < Struct.new(
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

A pagination token, indicating that you want to retrieve the next page of results. If you received a value for ‘NextToken` in the response from a previous `ListLedgers` call, then you should use that value as input here.

Returns:

  • (String)


1066
1067
1068
1069
1070
1071
# File 'lib/aws-sdk-qldb/types.rb', line 1066

class ListLedgersRequest < Struct.new(
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end