AwsCore::Lambda

What is AwsCore::Lambda?

AWS Lambda is a compute service that lets you run code without provisioning or managing servers. AWS Lambda executes your code only when needed and scales automatically, from a few requests per day to thousands per second. You pay only for the compute time you consume – there is no charge when your code is not running. With AWS Lambda, you can run code for virtually any type of application or backend service – all with zero administration.

You can also build serverless applications composed of functions that are triggered by events and automatically deploy them using CodePipeline and AWS CodeBuild. For more information, see AWS Lambda applications.

Purchase

Getting Started

After creating your Lambda User and your Test Function, you can Initialize the AWSCore::Lambda Plugin inside Unreal Engine 4, here is an example:

Initializing Lambda

SELECT YOUR REGION

Make sure to select the correct region that you are going to use for your AWS services, double check that you do not misspell the region name as that will cause connection issues.

Invoking Lambda Functions

After creating our user, our lambda function and initializing the plugin, we can now invoke our lambda functions inside Unreal Engine 4!

The Response from Amazon Lambda!

Example Project

Getting Help