Resources:
DDBTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: "books"
AttributeDefinitions:
- AttributeName: "id"
AttributeType: "S"
- AttributeName: "title"
AttributeType: "S"
KeySchema:
- AttributeName: "id"
KeyType: "HASH"
ProvisionedThroughput:
ReadCapacityUnits: 1
WriteCapacityUnits: 1