To deploy the sample code, it must first be packaged and then uploaded to the AWS Lambda as the function code.
- In your working directory, browse to the skill-sample-python-smarthome-switch/lambda/smarthome directory.
- Zip the lambda_function.py and alexa/ folder into a file named
package.zip
into theworking-smarthome
folder. Make sure that the lambda_function.py file and alexa/ folder are at the root of the zip file. Do not include the full skill-sample-python-smarthome-switch/lambda/smarthome path structure. For example, if you are using macOS, you can execute the following command:zip -r package.zip alexa/ lambda_function.py
to zip only the required folder and file. - Verify the contents of the package.zip file has a structure that looks like the following:
/alexa/
/lambda_function.py
If you encounter any issues, refer to the AWS Documentation for Creating a Deployment Package (Python).
- Navigate to https://us-east-1.console.aws.amazon.com/lambda/home?region=us-east-1#/functions/skill-sample-python-smarthome-switch?tab=graph and locate the Function code section.
- In the code entry type dropdown, select Upload a .ZIP file.
- Click the Upload button and browser to the
working-smarthome
directory or where you zipped the packaged code. - Select the
package.zip
file to upload as the lambda function code. - Click Save at the top right of the page. If successful, the environment of the Function code section will update with an alexa/ folder and lambda_function.py file replacing the previous contents.
After the sample code is uploaded to the Lambda function, you can test that it is properly working via the test events functionality of the AWS Lambda console. This is done by creating a Test Event that contains a sample directive message that the function code should handle and respond to.
- On the function page for skill-sample-python-smarthome-switch, select the Select a test event.. dropdown from the top menu of the function and click Configure test events.
- In the dialog that opens, leave Create new test event selected and leave the default template.
- For the Event name enter:
directiveDiscovery
. - Copy and paste the contents of https://raw.githubusercontent.com/alexa/alexa-smarthome/master/sample_messages/Discovery/Discovery.request.json into the text field at the bottom of the dialog replacing its contents.
- Click Create.
- With the directiveDiscovery Test Event created and selected in the dropdown, click the Test button.
- If everything was successful, an "Execution result: succeeded" message will be returned and clicking on the Details link of the result should show a response that looks like the following:
Any errors with the code or packaging and deployment of the code will be reflected in the result response. Not that on a successful response, the event namespace is Alexa.Discovery
. This is because the code is responding to a test event that sends in a Discovery directive.
Next Test the Skill
Return to the Instructions