How can I get list of files and file versions in a folder of s3 bucket using API?

0

I am trying to get list of files and file versions in a folder of s3 bucket by using API link by passing certain parameters I have refer this article: https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectVersions.html but not sure how i can create API link to get list of files file version as a response. thanks in advance

質問済み 1年前2379ビュー
2回答
0

Hi,

You could consider using AWS SDK for this use case as it would simplify your programming experience. There are few examples in the articles below which will help you understand how to list the S3 objects and its versions using the AWS SDK.

https://docs.aws.amazon.com/AmazonS3/latest/userguide/example_s3_ListObjects_section.html https://docs.aws.amazon.com/AmazonS3/latest/userguide/example_s3_ListObjectVersions_section.html

Thanks

profile pictureAWS
Rama
回答済み 1年前
0

Here is how you do this in the AWS CLI:

aws s3api list-object-versions \
    --bucket _YOUR_BUCKET_NAME_ \
    --prefix _YOUR_FOLDER_NAME_ \
    --query Versions[*].[Key,VersionId]
profile pictureAWS
エキスパート
kentrad
回答済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ