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
When the lambda is triggered via the API Gateway, is there a way to get the query string parameters from the RequestStreamHandler API?
publicclassHelloimplementsRequestStreamHandler {
publicstaticvoidhandler(InputStreaminputStream, OutputStreamoutputStream, Contextcontext) throwsIOException {
// is there any way to get the query string parameters here?
}
}