有没有办法使用Python2.7 + Boto3获取AWS Service(S3)中密钥的存储类?
我知道,对于Boto2,它是这样的:
print key.storage_class
但我找不到用Boto3获得的东西.
import boto3 s3 = boto3.resource('s3') key = s3.Object('bucket_name','key') print key.storage_class