Pages

Showing posts with label aws s3. Show all posts
Showing posts with label aws s3. Show all posts

Thursday, October 25, 2018

AWS S3 How to Find Files with by Keyword

open cmd
run command :
aws s3api list-objects --bucket BUCKETNAME --prefix FOLDERNAME1/FOLDERNAME2/ --output json --query "Contents[?contains(Key, `SearchKeyword`)]"



How to sum :
aws s3api list-objects --bucket BUCKETNAME --prefix FOLDERNAME1/FOLDERNAME2/ --output json --query "[sum(Contents[?contains(Key, `SearchKeyword`)].Size), length(Contents[?contains(Key, `SearchKeyword`)])]"

Wednesday, April 11, 2018

AWS S3 How to Count Folder Size

open cmd
run command :
aws s3api list-objects --bucket BUCKETNAME --prefix FOLDERNAME1/FOLDERNAME2/ --output json --query "[sum(Contents[].Size), length(Contents[])]"

ShareThis