Host a Custom Skill as an AWS Lambda Function
The easiest way to build the cloud-based service for a custom Alexa skill is by using AWS Lambda, an Amazon Web Services offering that runs your code only when it’s needed and scales automatically, so there is no need to provision or continuously run servers. You upload the code for your Alexa skill to a Lambda function and Lambda does the rest, executing it in response to Alexa voice interactions and automatically managing the compute resources for you.
- About Lambda Functions and Custom Skills
- Creating a Lambda Function for an Alexa Skill
- Test a Lambda Function in the Console
- Configuring the Alexa Skills Kit Trigger
- Sample Interaction Model for the Color Expert Blueprint
- Next Steps
About Lambda Functions and Custom Skills
Using a Lambda function for your service eliminates some of the complexity around setting up and managing your own endpoint:
- You do not need to administer or manage any of the compute resources for your service.
- You do not need an SSL certificate.
- You do not need to verify that requests are coming from the Alexa service yourself. Access to execute your function is controlled by permissions within AWS instead.
- AWS Lambda runs your code only when you need it and scales with your usage, so there is no need to provision or continuously run servers.
- Alexa encrypts its communications with Lambda utilizing TLS. See also AWS security best practices.
- For most developers, the Lambda free tier is sufficient for the function supporting an Alexa skill. The first one million requests each month are free. Note that the Lambda free tier does not automatically expire, but is available indefinitely.
AWS Lambda supports code written in Node.js, Java, Python, or C#. You can copy and edit Node.js or Python code in the inline code editor in the AWS Lambda console or upload it in a zip file. For basic testing, you can invoke your function manually by sending it JSON requests in the Lambda console.
For an overview of AWS Lambda, see What Is AWS Lambda?
The Lambda functions must adhere to the same service interface and handle the three types of requests sent by Alexa. For details about handling Alexa requests, see Handling Requests Sent by Alexa. For details about the JSON interface, see the JSON Interface Reference for Custom Skills.
This document covers creating a new Lambda function for a custom skill. If you are using the Smart Home Skill API, you use Lambda to create a skill adapter. See Steps to Create an Alexa Smart Home Skill.
Creating a Lambda Function for an Alexa Skill
You use the Lambda console to create a new Lambda function and do basic testing. You can use a blueprint to create a new function with code for a basic function that implements a simple skill in Node.js or Python. Alternatively, skip the blueprint step to create a Lambda function from scratch.
If you want to code your service in Java, but haven’t yet set up a Java project, you may want to use one of the samples as a starting point for your function.
To create a new Lambda function:
- If you do not already have an account on AWS, go to Amazon Web Services and create an account.
- Log in to the AWS Management Console and navigate to AWS Lambda.
-
Click the region drop-down in the upper-right corner of the console and select either US East (N. Virginia) or EU (Ireland).
Lambda functions for Alexa skills must be hosted in either the US East (N. Virginia) or EU (Ireland) region.
- If you have no Lambda functions yet, click Get Started Now. Otherwise, click Create a Lambda Function.
- To start with sample code in Node.js or Python, select one of the Alexa Skills Kit blueprints:
- alexa-skill-kit-sdk-factskill
- alexa-skill-kit-sdk-triviaskill
- alexa-skills-kit-color-expert
- alexa-skill-kit-sdk-howtoskill
- alexa-skills-kit-color-expert-python
Tip: Type ‘alexa’ in the Filter box to filter the list of blueprints.You can see more about these samples at the Alexa organization on GitHub.
- When prompted to configure triggers, click the box and select Alexa Skills Kit, then click Next.
- Enter a Name and Description for the function.
- Select the language you want to use for the Runtime (Node.js, Java, or Python).
- If you select Java, you need to also upload your Java code in a zip file.
- Note that you cannot change the language for a function once it is saved.
- Select the Role for the function. This defines the AWS resources the function can access.
- To use an existing role, select the role under Use existing role.
- To create a new role, see Defining a new Role for the Function, below
- On the Review page, make sure that the Triggers section includes Alexa Skills Kit.
- Click Create function to save your new function.
- See below to test the function in the console.
When you are ready to add your own code, edit the function and select the Code tab. From here, you can do any of the following:
- Write your code directly in the code editor in the Lambda console (Node.js or Python).
- Write your code offline and copy and paste it into the Lambda console editor (Node.js or Python).
- Write your code offline and upload it to the Lambda function in a zip file (Node.js, Python, or Java).
- Use the Eclipse IDE and the AWS Toolkit for Eclipse (Java). For details, see Using AWS Lambda with the Toolkit for Eclipse.
Defining a New Role for the Function
The role specifies the AWS resources your function can access. To create a new role while configuring your function:
- For Role (under Lambda function handler and role), select Create new role from template(s).
- Enter the Role Name.
- From the Policy templates list, select Simple Microservice permissions.
Test a Lambda Function in the Console
You can manually test a Lambda function in the Lambda console by sending sample JSON events formatted in the same way as requests sent by Alexa. Sample events are provided for testing within the console. You can use these events as a starting point and modify them to represent requests that the Alexa service would send to your own function. Note that you can also send events to a Lambda function using the AWS CLI.
See JSON Interface Reference for Custom Skills for details about the JSON interface.
- In the Function list, click the function name to open the details for the function.
- Click Actions and then Configure test event.
- From the Sample event template list, select one of the sample Alexa requests:
- Alexa Start Session
- Alexa Intent - MyColors
- Alexa End Session
These three Alexa sample events send requests that correspond to the code provided in the alexa-skills-kit-color-expert and alexa-skills-kit-color-expert-python blueprints.
You can send one of these requests as is, or use it as a starting point to test different intent and slot values.
- Choose Submit.
Once you have configured a test event, clicking Test sends that same request. To configure a different event, click Actions and then Configure test event.
Alexa Start Session, Alexa Intent - MyColors, or Alexa End Session. Selecting any other sample (such as Hello World) will not work.After the function runs, the Execution result section shows the response returned by the function, in JSON format. You should see a response appropriate for the request pasted into the Sample event box. For example, for a LaunchRequest, the sample returns a response similar to this:
{
"version": "1.0",
"sessionAttributes": {},
"response": {
"outputSpeech": {
"type": "PlainText",
"text": "Welcome to the Alexa Skills Kit sample, Please tell me your favorite color by saying, my favorite color is red"
},
"card": {
"type": "Simple",
"title": "SessionSpeechlet - Welcome",
"content": "SessionSpeechlet - Welcome to the Alexa Skills Kit sample, Please tell me your favorite color by saying, my favorite color is red"
},
"reprompt": {
"outputSpeech": {
"type": "PlainText",
"text": "Please tell me your favorite color by saying, my favorite color is red"
}
},
"shouldEndSession": false
}
}
The Execution logs section shows any log messages generated by the code. The sample writes a log message for each type of request, so you should see something like the following:
2015-05-18T23:53:22.357Z 0f885f98-fdb9-11e4-80af-1b9f8363b496 onIntent requestId=amzn1.echo-api.request.6919844a-733e-4e89-893a-fdcb77e2ef0d, sessionId=amzn1.echo-api.session.abeee1a7-aee0-41e6-8192-e6faaed9f5ef
Configuring the Alexa Skills Kit Trigger
Configuring the Alexa Skills Kit trigger grants Alexa the necessary invocation permissions for your function.
If you configured the trigger while creating the function, you can skip these steps.
- Log in to the AWS Management Console and navigate to AWS Lambda.
- Click your function in the list to open the configuration details.
- Select the Triggers tab.
- Click Add trigger.
- Click the outlined box and choose Alexa Skills Kit.
- Click Submit.
It is highly recommended that you limit invocation permissions to just Alexa to protect your function from malicious callers.
Sample Interaction Model for the Color Expert Blueprint
If you created the Lambda function using either the alexa-skills-kit-color-expert or alexa-skills-kit-color-expert-python blueprint, you may want to test the sample skill with either an Alexa-enabled device or the Service Simulator. To do this, you need to register the skill in the developer portal and provide an interaction model for the skill.
A very simple interaction model for the sample is provided below. Copy this information into the Intent Schema and Sample Utterances boxes on the Interaction Model page of the developer portal when you register this new skill.
Intent Schema
{
"intents": [
{
"intent": "MyColorIsIntent",
"slots": [
{
"name": "Color",
"type": "LIST_OF_COLORS"
}
]
},
{
"intent": "WhatsMyColorIntent"
},
{
"intent": "AMAZON.HelpIntent"
}
]
}
Custom Slot Type
Create a type called LIST_OF_COLORS and paste in the following values:
green
red
blue
orange
gold
silver
yellow
black
white
Sample Utterances
WhatsMyColorIntent what's my favorite color
WhatsMyColorIntent what is my favorite color
WhatsMyColorIntent what's my color
WhatsMyColorIntent what is my color
WhatsMyColorIntent my color
WhatsMyColorIntent my favorite color
WhatsMyColorIntent get my color
WhatsMyColorIntent get my favorite color
WhatsMyColorIntent give me my favorite color
WhatsMyColorIntent give me my color
WhatsMyColorIntent what my color is
WhatsMyColorIntent what my favorite color is
WhatsMyColorIntent yes
WhatsMyColorIntent yup
WhatsMyColorIntent sure
WhatsMyColorIntent yes please
MyColorIsIntent my favorite color is {Color}
Next Steps
- Next: Handling Requests Sent by Alexa
- Go back to: Registering and Managing Custom Skills in the Developer Portal
- Return to: Steps to Build a Custom Skill
For additional Node.js and Java samples you can use with Lambda, see: