Answers for "How to invoke an AWS Lambda function asynchronously"

C#
0

How to invoke an AWS Lambda function asynchronously

AWSLambdaAsyncClient client = new AWSLambdaAsyncClient();
client.withRegion(Regions.fromName(region));
InvokeRequest request = new InvokeRequest();
request.setInvocationType("Event");
request.withFunctionName(functionName).withPayload(payload);
InvokeResult invoke = client.invoke(request);
Posted by: Guest on November-20-2021

Code answers related to "How to invoke an AWS Lambda function asynchronously"

C# Answers by Framework

Browse Popular Code Answers by Language