I am having AWS S3 buckets with version enabled.
For each object
Object Key
VersionId
,Last Modified
,size
Is there any Service available to achieve this report whether data from S3 buckets having match in context with above mentioned criteria ?
It is possible to write a java utility, but interested into looking for AWS way of running some service which can give data on this.
AWS Lambda cant be use here since its short termed service and iterating over each and every key w.r.t. versions took considerable time period.
Currently I am having a Java based utility ready with me which can do iterative data collection and eventually do compare, but that’s still manually doing fetching operation.
If something AWS come up with such comparison then it will be value added.
1