3 min read
Filter and delete s3 objects by date.
➜ ~ aws s3api list-objects --bucket fake-bucket --query 'Contents[?LastModified>=`2018-10-04` ].{Key:Key}' --prefix "2018-10-04" --output text | xar
Read more➜ ~ aws s3api list-objects --bucket fake-bucket --query 'Contents[?LastModified>=`2018-10-04` ].{Key:Key}' --prefix "2018-10-04" --output text | xar
Read morePer AWS docs requirements for encryptions are:
Read more