how do i copy move incremental aws snapshot to s3 bucket

0 votes
I want to copy/move the AWS snapshot to the s3 bucket in order to reduce the storage costs. can you please provide me a solution to my issue?
Dec 3, 2020 in AWS by gorle
• 120 points

edited Dec 4, 2020 by gorle 1,430 views

1 answer to this question.

0 votes

Hi@gorie,

You can do this in two ways. One way is AWS CLI and another way is AWS Console. The following copy-snapshot example command copies the specified snapshot from the us-west-2 Region to the us-east-1 Region and adds a short description using the AWS CLI command.

$ aws ec2 copy-snapshot \
    --region us-east-1 \
    --source-region us-west-2 \
    --source-snapshot-id snap-066877671789bd71b \
    --description "This is my copied snapshot."

If you want to do with the console, then follow the below link.

https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-copy-snapshot.html

answered Dec 3, 2020 by MD
• 95,440 points

I want to copy/move incremental snapshot ot s3 bucket. above process copy the snapshot from one region to another region.

webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP