Wednesday, August 14, 2019

How to Create, Upload, and Invoke an AWS Lambda Function

Create an AWS Lambda Project

To begin a Lambda project, you first implement the code as a method in a handler class. The AWS Toolkit for Eclipse provides a new project wizard to help you create a new handler class. 

The Lambda project is a Maven project that uses a POM.xml file to manage package dependencies. You can use the Maven command line tool for building, testing, and deploying your application.
To create an AWS Lambda project
  1. On the Eclipse toolbar, open the Amazon Web Services menu (identified by the AWS homepage icon), and then choose New AWS Lambda Java project. Or on the Eclipse menu bar, choose FileNewAWS Lambda Java Project.
  2. Add a Project nameGroup IDArtifact ID, and class name in the associated input boxes. The Group ID and Artifact ID are the IDs that identify a Maven build artifact. This tutorial uses the following example values:
    • Project nameHelloLambda
    • Group IDcom.example.lambda
    • Artifact IDdemo
    • Class nameHello
    The Package Name field is the package namespace for the AWS Lambda handler class. The default value for this field is a concatination of the Group ID and Artifact ID, following Maven project conventions. This field is automatically updated when the Group ID and Artifact ID fields are updated.
  3. For Input Type, choose Custom. For information about each of the available input types, see New AWS Lambda Java Project Dialog.
  4. Verify that your entries look like the following screenshot (modify them if they are not), and then choose Finish.
    
                  Project name, Group ID, Artifact ID and class name values in the New AWS Lambda
Maven Project dialog box
    As you type, the code in the Source preview changes to reflect the changes you make in the dialog box.
  5. After you choose Finish, your project's directory and source files are generated in your Eclipse workspace. A new web browser window opens, displaying README.html (which was created for you in your project's root directory). README.html provides instructions to guide you through the next steps of implementing, testing, uploading, and invoking your new Lambda function. Read through it to gain some familiarity with the steps that are described here.
Next, you implement the function in the HelloLambda Java project that was just created for you in Eclipse.

Implement the Handler Method

You use the Create New Project dialog box to create a skeleton project. Now fill in the code that will be run when your Lambda function is invoked. 
(In this case, by a custom event that sends a String to your function, as you specified when setting your method's input parameter.)
To implement your Lambda handler method
  1. In the Eclipse Project Explorer, open Hello.java in the HelloLambda project. It will contain code similar to the following.
    package com.example.lambda.demo; import com.amazonaws.services.lambda.runtime.Context; import com.amazonaws.services.lambda.runtime.RequestHandler; public class Hello implements RequestHandler<Object, String> { @Override public String handleRequest(Object input, Context context) { context.getLogger().log("Input: " + input); // TODO: implement your handler return "Hello from Lambda"; } }
  2. Replace the contents of the handleRequest function with the following code.
    @Override public String handleRequest(String input, Context context) { context.getLogger().log("Input: " + input); String output = "Hello, " + input + "!"; return output; }

Allow Lambda to Assume an IAM Role

For Lambda to be able to access your Lambda function, you have to create an IAM role that gives it access to your AWS resources. 

You can create the role in two ways, either through the AWS Management Console or by using the AWS Toolkit for Eclipse. This section describes how to create the IAM role in the console. See Upload the Code to create one using the AWS Toolkit for Eclipse.
To create an IAM role for Lambda
  1. Sign in to the AWS Management Console.
  2. From the Services menu, open the IAM console.
  3. In the Navigation pane, choose Roles, and then choose Create role.
  4. For Select type of trusted entity, choose AWS service, and then choose Lambda for the service that will use this role. Then choose Next: Permissions.
  5. For Attach permissions policy, choose AWSLambdaBasicExecutionRole. This allows Lambda to write to your CloudWatch Logs resources. Then choose Next: Review.
  6. Add a name for your role, such as hello-lambda-role, and a description for the role. Then choose Create role to finish creating the IAM role.

Create an Amazon S3 Bucket for Your Lambda Code

AWS Lambda requires an Amazon S3 bucket to store your Java project when you upload it. You can either use a bucket that already exists in the AWS Region in which you'll run your code, or you can create a new one specifically for Lambda to use (recommended).

You can create an Amazon S3 bucket in two ways, either through the AWS Management Console or by using the AWS Toolkit for Eclipse. This section describes how to create an Amazon S3 bucket in the console. See Upload the Code to create one using the AWS Toolkit for Eclipse.
To create an Amazon S3 bucket for use with Lambda
  1. Sign in to the AWS Management Console.
  2. From the Services menu, open the S3 console.
  3. Choose Create bucket.
  4. Enter a bucket name, and then choose a region for your bucket. This region should be the same one in which you intend to run your Lambda function. For a list of regions supported by Lambda see Regions and Endpoints in the Amazon Web Services General Reference.
  5. Choose Create to finish creating your bucket.

Upload the Code

Next, you upload your code to AWS Lambda in preparation for invoking it using the AWS Management Console.
To upload your function to Lambda
  1. Right-click in your Eclipse code window, choose AWS Lambda, and then choose Upload function to AWS Lambda.
  2. On the Select Target Lambda Function page, choose the AWS Region to use. This should be the same region that you chose for your Amazon S3 bucket.
    
                  Select Target Lambda function page
  3. Choose Create a new Lambda function, and then type a name for your function (for example, HelloFunction).
  4. Choose Next.
  5. On the Function Configuration page, enter a description for your target Lambda function, and then choose the IAM role and Amazon S3 bucket that your function will use.
    
                  Function Configuration page
    For more information about the available options, see Upload Function to AWS Lambda Dialog Box.
  6. On the Function Configuration page, choose Create in Function Role if you want to create a new IAM role for your Lambda function. Enter a role name in the dialogue box the Create Role dialogue box.
    
                  Creating a new IAM role in the Function Configuration page
  7. On the Function Configuration page, choose Publish new version if you want the upload to create a new version of the Lambda function. To learn more about versioning and aliases in Lambda, see AWS Lambda Function Versioning and Aliases in the AWS Lambda Developer Guide.
  8. If you chose to publish a new version, the Provide an alias to this new version option is enabled. Choose this option if you want to associate an alias with this version of the Lambda function.
  9. On the Function Configuration page, choose Create in the S3 Bucket for Function Codesection if you want to create a new Amazon S3 bucket for your Lambda function. Enter a bucket name in the Create Bucket dialogue box.
    
                  Create Bucket page
  10. In the S3 Bucket for Function Code section, you can also choose to encrypt the uploaded code. For this example, leave None selected. To learn more about Amazon S3 encryption, seeProtecting Data Using Server-Side Encryption in the Amazon S3 Developer Guide.
  11. Leave the Advanced Settings options as they are. The AWS Toolkit for Eclipse selects default values for you. Choose Finish to upload your Lambda function to AWS.
If the upload succeeds, you will see the Lambda function name that you chose appear next to your Java handler class in the Project Explorer view.
If you don't see this happen, open the Eclipse Error Log view. Lambda writes information about failures to upload or run your function to this error log so you can debug them.

Invoke the Lambda Function

You can now invoke the function on AWS Lambda.
To invoke your Lambda function
  1. Right-click in the Eclipse code window, choose AWS Lambda, and then choose Run Function on AWS Lambda.
  2. Choose the handler class you want to invoke.
  3. In the input box, type a valid JSON string, such as "AWS Lambda".
    
                  Choosing a Lambda handler to invoke
    Note
    You can add new JSON input files to your project, and they will show up in this dialog box if the file name ends with .json. You can use this feature to provide standard input files for your Lambda functions.
  4. The Show Live Log box is checked by default. This displays the logs from the Lambda function output in the Eclipse Console.
  5. Choose Invoke to send your input data to your Lambda function. If you have set up everything correctly, you should see the return value of your function printed out in the Eclipse Console view (which automatically appears if it isn't already shown).
Congratulations, you've just run your first Lambda function directly from the Eclipse IDE!

No comments:

Post a Comment

Lab 09: Publish and subscribe to Event Grid events

  Microsoft Azure user interface Given the dynamic nature of Microsoft cloud tools, you might experience Azure UI changes that occur after t...