I am able to filter a particular date's data but not the date range data. Like 12-09-2019 to 15-09-2019 using AWS CLI
eg. to filter 2019 year's data i am using --recursive --exclude "*" --include "2019"
I am able to filter a particular date's data but not the date range data. Like 12-09-2019 to 15-09-2019 using AWS CLI
eg. to filter 2019 year's data i am using --recursive --exclude "*" --include "2019"
Copyright © 2021 Jogjafile Inc.
You will need to use the s3api to handle the query which uses the JMESPath syntax
You can also specify time as well
The downside to this approach is that it must list every object and perform the query. For large buckets if you can limit to a prefix it will speed up your search.
And if your primary lookup is by date then look to store the objects in date/time sort order as you can use the prefix option to speed up your searches. A couple of examples.
This will