You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The closest I can get to that is S3Location, but it doesn't take plain strings (i.e s3://example-bucket/example-prefix) as building parameters, unfortunately.
Current Behavior
Currently I'm forced to do inefficient/ugly plain string matching on s3://example-bucket/example-prefix to get to the different components. I would like more convenient builders and accessors for this.
Possible Solution
Perhaps just porting v1 S3URI method/code to v2's S3Location would be enough?
The text was updated successfully, but these errors were encountered:
EDIT: Duplicate of #272.
Expected Behavior
I would have expected to have a simple S3URI method like the one present in aws sdk java v1:
https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/services/s3/AmazonS3URI.html#AmazonS3URI-java.lang.String-
To do things like:
The closest I can get to that is S3Location, but it doesn't take plain strings (i.e
s3://example-bucket/example-prefix
) as building parameters, unfortunately.Current Behavior
Currently I'm forced to do inefficient/ugly plain string matching on
s3://example-bucket/example-prefix
to get to the different components. I would like more convenient builders and accessors for this.Possible Solution
Perhaps just porting v1 S3URI method/code to v2's
S3Location
would be enough?The text was updated successfully, but these errors were encountered: