Class: Aws::QLDB::Types::ListJournalS3ExportsForLedgerResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDB::Types::ListJournalS3ExportsForLedgerResponse
- Defined in:
- gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#journal_s3_exports ⇒ Array<Types::JournalS3ExportDescription>
The array of journal export job descriptions that are associated with the specified ledger.
-
#next_token ⇒ String
- If
NextToken
is empty, then the last page of results has been processed and there are no more results to be retrieved.
- If
Instance Attribute Details
#journal_s3_exports ⇒ Array<Types::JournalS3ExportDescription>
The array of journal export job descriptions that are associated with the specified ledger.
980 981 982 983 984 985 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 980 class ListJournalS3ExportsForLedgerResponse < Struct.new( :journal_s3_exports, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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 ofNextToken
in a subsequentListJournalS3ExportsForLedger
call.
980 981 982 983 984 985 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 980 class ListJournalS3ExportsForLedgerResponse < Struct.new( :journal_s3_exports, :next_token) SENSITIVE = [] include Aws::Structure end |