Is there any way to specify to only include the latest version of each in the "ListVersionRequest"?
I need the version value, so a simple "AmazonS3Client.listObject()" will not be sufficent as "S3ObjectSummary" has no version information.
I'm trying to create a utility that ping S3 for all objects in the versioned bucket and compares the latest version value to what the utility is already tracking.
The only solution I can think of right now is just to do "AmazonS3Client.listVersions()", iterate through the "S3VersionSummary.list", handle the first most recent version then manually iterate and skip all older versions of an object until it gets to the new key. Is this the best solution?