Following is the signature for aws lambda method which takes one inputStream param. In my usecase this inputstream param could have size of GBs also. Is there any maximum limit on lambda for this inputstream ?
public void handler(InputStream inputStream, OutputStream outputStream, Context context)
throws IOException {
}
If yes what all option I could use for taking inputstream in lambda? In my usecase I want to avoid taking text-stream in s3 file. This inputstream consist of huge number of csv formatted data records. Client is triggering this lambda by aws-sdk api and want to pass this csv records as lambda inputstream.