--- AWSTemplateFormatVersion: "2010-09-09" Resources: myTable: Type: AWS::DynamoDB::Table Properties: KeySchema: - AttributeName: "ArtistId" KeyType: "HASH" - AttributeName: "Concert" KeyType: "RANGE" ProvisionedThroughput: ReadCapacityUnits: 5 WriteCapacityUnits: 5