Improve and add new operation S3Client
#2372
Labels
feature-request
A feature should be added or improved.
S3Client
#2372
Currently, I am working on spring cloud aws integration with s3, moving the existing implementation from sdk v1 to v2 and I would like to perform some operations in a friendly way. In this case, if the user is working with buckets use
S3Bucket
and if it is using objects then useS3Object
instead of*Response
classes.Describe the Feature
Is your Feature Request related to a problem?
Proposed Solution
Currently, there is a model class
S3Object
, would be great to have a similar one forS3Bucket
which contains information about the bucket and can be use it when performingthis.s3Client.createBucket(CreateBucketRequest.builder().build())
. Also, add a new methodthis.s3Client.getBucket(GetBucketRequest);
which also returnS3Bucket
.Describe alternatives you've considered
Additional Context
Your Environment
The text was updated successfully, but these errors were encountered: