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

demandé il y a un an2379 vues
2 réponses
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
répondu il y a un an
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
EXPERT
kentrad
répondu il y a un an

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions