Class: Aws::QLDB::Types::ListLedgersResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDB::Types::ListLedgersResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-qldb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ledgers ⇒ Array<Types::LedgerSummary>
The ledgers that are associated with the current Amazon Web Services account and Region.
-
#next_token ⇒ String
A pagination token, indicating whether there are more results available:.
Instance Attribute Details
#ledgers ⇒ Array<Types::LedgerSummary>
The ledgers that are associated with the current Amazon Web Services account and Region.
1092 1093 1094 1095 1096 1097 |
# File 'lib/aws-sdk-qldb/types.rb', line 1092 class ListLedgersResponse < Struct.new( :ledgers, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token, indicating whether there are more results available:
-
If ‘NextToken` is empty, then the last page of results has been processed and there are no more results to be retrieved.
-
If ‘NextToken` is not empty, then there are more results available. To retrieve the next page of results, use the value of `NextToken` in a subsequent `ListLedgers` call.
1092 1093 1094 1095 1096 1097 |
# File 'lib/aws-sdk-qldb/types.rb', line 1092 class ListLedgersResponse < Struct.new( :ledgers, :next_token) SENSITIVE = [] include Aws::Structure end |