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
Hi ... is there a AsyncRequestProvider that stream from String, basically I would like to use the S3AsyncClient to put string object into s3
I only have option to write string into a file system and and upload from there using something like this s3AsyncClient.putObject(putObjectRequest, AsyncRequestProvider.fromFile(Paths.get("myfile.json")))
but I would like to have something like s3AsyncClient.putObject(putObjectRequest, AsyncRequestProvider.fromObject(myOBject.toString))
The text was updated successfully, but these errors were encountered:
+1: Support for byte[] would be nice! Having explicit String support would probably just be an alias for toBytes(Charset), since we probably want people to specify the encoding explicitly.
Hi ... is there a
AsyncRequestProvider
that stream from String, basically I would like to use theS3AsyncClient
to put string object into s3I only have option to write string into a file system and and upload from there using something like this
s3AsyncClient.putObject(putObjectRequest, AsyncRequestProvider.fromFile(Paths.get("myfile.json")))
but I would like to have something like
s3AsyncClient.putObject(putObjectRequest, AsyncRequestProvider.fromObject(myOBject.toString))
The text was updated successfully, but these errors were encountered: