3 Answers
- Newest
- Most votes
- Most comments
1
The following AWS CLI commands may be used to check.
aws lightsail get-instance-snapshots --region eu-west-2
In the case of a disk snapshot, the following command would be used to check it.
aws lightsail get-disk-snapshots --region eu-west-2
If an instance snapshot is found, delete it with the following command.
aws lightsail delete-instance-snapshot --instance-snapshot-name "instance-snapshot-name" --region eu-west-2
If a disk snapshot is found, delete it with the following command.
aws lightsail delete-disk-snapshot --disk-snapshot-name "disk-snapshot-name" --region eu-west-2
The commands can be executed with CloudShell.
https://docs.aws.amazon.com/cloudshell/latest/userguide/welcome.html#how-to-get-started
0
Here results:
aws lightsail get-instance-snapshots --region eu-west-2 --profile 8cells
{
"instanceSnapshots": []
}
aws lightsail get-disk-snapshots --region eu-west-2 --profile 8cells
{
"diskSnapshots": []
}
And I am still see daily 0.01$ cost for $0.05 / GB-Month of stored snapshot data - Europe (London) 0.585 GB-Mo
answered a year ago
0
You may want to check with AWS Support by opening a case with "Account and billing".
https://docs.aws.amazon.com/awssupport/latest/user/case-management.html
Relevant content
- Accepted Answerasked 7 months ago
- asked 10 months ago
- asked a year ago
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated 10 months ago
- AWS OFFICIALUpdated 10 months ago