I've created a snapshot of EC2 instance via:
aws ec2 create-snapshot --volume-id vol-xyz
In aws ec2 create-snapshot help we can read:
Creates a snapshot of an EBS volume and stores it in Amazon S3.
Although I cannot see in which bucket it has been imported.
In addition, there is a command aws ec2 import-snapshot which imports a disk from the S3 bucket.
So basically I'm looking for some way of exporting EC2 snapshot into S3 bucket where I can see the image file in order to download it.
How I can do it?