Closed
Description
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))