I'm trying to download file that has many versions from version-enabled bucket. Using the bellow code, it always download the file that has latest version.
s3 = boto3.resource('s3')
bucket = s3.Bucket("mybucket")
bucket.download_file("somefile", "/donwload/path/somefile.txt")
How can I specify which version I want to download for the "somefile" file?
VersionIdinExtraArgs