Reputation: 551
Is it possible to configure using lifecycle rules in Cloudformation template to move all S3 bucket objects to another bucket and change their storage class to Glacier?
Upvotes: 0
Views: 434
Reputation: 269470
AWS CloudFormation can be used to configure Amazon S3 Lifecycle Rules (AWS::S3::Bucket LifecycleConfiguration - AWS CloudFormation).
However, Lifecycle Rules do not "move" objects. Instead, they change the Storage Class of existing objects.
You would need to find another method for identifying and moving objects after a period of time.
Upvotes: 1