Class: Aws::QLDB::Types::ListJournalKinesisStreamsForLedgerResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDB::Types::ListJournalKinesisStreamsForLedgerResponse
- Defined in:
- gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
- If
NextToken
is empty, the last page of results has been processed and there are no more results to be retrieved.
- If
-
#streams ⇒ Array<Types::JournalKinesisStreamDescription>
The QLDB journal streams that are currently associated with the given ledger.
Instance Attribute Details
#next_token ⇒ String
If
NextToken
is empty, the last page of results has been processed and there are no more results to be retrieved.If
NextToken
is not empty, more results are available. To retrieve the next page of results, use the value ofNextToken
in a subsequentListJournalKinesisStreamsForLedger
call.
950 951 952 953 954 955 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 950 class ListJournalKinesisStreamsForLedgerResponse < Struct.new( :streams, :next_token) SENSITIVE = [] include Aws::Structure end |
#streams ⇒ Array<Types::JournalKinesisStreamDescription>
The QLDB journal streams that are currently associated with the given ledger.
950 951 952 953 954 955 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 950 class ListJournalKinesisStreamsForLedgerResponse < Struct.new( :streams, :next_token) SENSITIVE = [] include Aws::Structure end |