Skip to content

Latest commit

 

History

History
40 lines (19 loc) · 1.64 KB

File metadata and controls

40 lines (19 loc) · 1.64 KB

AWS & ASK CLI Setup Guide

AWS Account | AWS CLI | AWS CLI Profile | Amazon Developer Account | ASK CLI | ASK CLI Profile | Deploy a Skill

AWS Command Line Interface (CLI)

The AWS Command Line Interface (CLI) is a unified tool to manage your AWS services. With just one tool to download and configure, you can control multiple AWS services from the command line and automate them through scripts.

When developing Alexa Skills, AWS Lambda is a great runtime choice for hosting and executing your skill code. The AWS CLI provides easy access to create and update Lambda functions.

If you don't already have an AWS account, make sure to create an account first.

Do you have the AWS CLI Installed?

To check whether you have the AWS CLI installed, open a terminal (command prompt on Windows) and type the following command:

aws --version

If the CLI is installed correctly then you should see an output like this:

aws-cli/1.11.84 Python/3.6.2 Linux/4.4.0-59-generic botocore/1.5.47

In this case, you can continue to the next step which is to Setup an AWS CLI Profile.

If the CLI is not installed, then you will get an error back stating that aws is not a recognized command. In that case you should continue to follow the guide to Install the AWS CLI

Next steps: