Short answer: no.
"ledger" is really just shorthand for "ledger database". So you could equally refer to a ledger as a database. Thus your question is the same as: what happens to my data after I delete my database? The answer should be unsurprising: the data is deleted.
A ledger's journal is dedicated to that ledger. You pay for IOs (reads and writes) to the journal and storage of the blocks in that journal. Once you delete the ledger, that storage capacity is reclaimed (you aren't paying for it anymore).
QLDB has the following mechanisms to prevent accidental deletion of a ledger:
- Ledgers have a "deletion protection" attribute on them that must be disabled before they can be deleted.
- When deleting via the console, an additional popup box is presented before the deletion proceeds.
- IAM policies can be used to restrict calls to Update and Delete APIs.
We recommend using exports to keep an additional copy of your data.