Content-Disposition S3

0

How to find Content-Disposition of every object stored inside a given S3 bucket (which API is best suited for it)?

Thanks

profile picture
已提问 2 年前560 查看次数
2 回答
0

If it is set as a part of meta data then we can try to explore below cli api example.

get-object-attributes - Retrieves all the metadata from an object without returning the object itself. This action is useful if you’re interested only in an object’s metadata. To use GetObjectAttributes , you must have READ access to the object.

profile pictureAWS
专家
已回答 2 年前
0

I just wrote this piece of code to test this feature out:

from pickle import OBJ
import boto3

client = boto3.client('s3')
list_buckets = client.list_buckets()
for bucket in list_buckets['Buckets']:
   list_objects = client.list_objects(Bucket=bucket['Name'])
   for objkey in list_objects['Contents']:        
    get_object = client.get_object(
        Bucket=bucket['Name'],
        Key=objkey['Key'],
        ResponseContentDisposition='inline'
    )

    print(f"{bucket['Name']} ---> {get_object['Metadata']}")

And I am receiving the output as:

<bucket_name> ---> {}

Any specific reason I am getting empty object.

Thanks

profile picture
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则