Class: Aws::QLDB::Types::ListLedgersRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDB::Types::ListLedgersRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-qldb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return in a single ‘ListLedgers` request.
-
#next_token ⇒ String
A pagination token, indicating that you want to retrieve the next page of results.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return in a single ‘ListLedgers` request. (The actual number of results returned might be fewer.)
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_token ⇒ String
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.
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 |