Skip to content

Commit 88db5ad

Browse files
Adding missing documentation
Adding missing DynamoDB instructions.
1 parent d5fa604 commit 88db5ad

3 files changed

Lines changed: 23 additions & 4 deletions

File tree

instructions/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ These instructions are to build a Sample Alexa Smart Home skill using Python tha
1212
4. [Create the Skill](create-the-skill.md)
1313
5. [Setup the Lambda Function](setup-the-lambda-function.md)
1414
6. [Configure the Skill](configure-the-skill.md)
15-
7. [Deploy the Sample Code](deploy-the-sample-code.md)
16-
8. [Test the Skill](test-the-skill.md)
17-
9. [Review the Skill Logs](review-the-skill-logs.md)
15+
7. [Setup the DynamoDB Table](setup-the-dynamodb-table.md)
16+
8. [Deploy the Sample Code](deploy-the-sample-code.md)
17+
9. [Test the Skill](test-the-skill.md)
18+
10. [Review the Skill Logs](review-the-skill-logs.md)
1819

1920
To begin, start with [Setup the Sample Resources](setup-the-sample-resources.md)
2021

instructions/configure-the-skill.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ Using your account-specific values from the skill configuration section, collect
3232
6. Click **Save**.
3333

3434

35-
Next [Deploy the Sample Code](deploy-the-sample-code.md)
35+
Next [Setup the DynamoDB Table](setup-the-dynamodb-table.md)
3636

3737
Return to the [Instructions](README.md)
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Setup the Amazon DynamoDB Table
2+
3+
Create a new Amazon DynamoDB Table that will hold the state of the virtual switch.
4+
5+
## Create a SampleSmartHome Table
6+
7+
1. Navigate to the Amazon DynamoDB Tables Console at https://console.aws.amazon.com/dynamodb/home?region=us-east-1#tables.
8+
2. Click the **Create table** button.
9+
3. For the **Table name**, enter `SampleSmartHome`.
10+
4. For the **Primary key**, enter `ItemId`.
11+
5. Click the **Create** button to create the table.
12+
13+
> It may take a moment for the table to be created.
14+
15+
16+
Next [Deploy the Sample Code](deploy-the-sample-code.md)
17+
18+
Return to the [Instructions](README.md)

0 commit comments

Comments
 (0)