January 2019
Intermediate to advanced
490 pages
15h 37m
English
We will see the components of the CloudFormation template needed for this recipe. The completed template file is available with the code files.
---AWSTemplateFormatVersion: '2010-09-09'Description: Your First DynamoDB Table
Resources: MyFirstTable: Type: AWS::DynamoDB::Table
Properties: TableName: my_table ProvisionedThroughput: ReadCapacityUnits: 1 WriteCapacityUnits: 1 KeySchema: - AttributeName ...
Read now
Unlock full access