--- AWSTemplateFormatVersion: "2010-09-09" Description: > Template with all error levels: Warning, Error and Informational Resources: myTable: Type: "AWS::DynamoDB::Table" Properties: TableName: !Sub "TableName" AttributeDefinitions: - AttributeName: "Id" AttributeType: "S" # Valid AllowedValue KeySchema: - AttributeName: "Id" KeyType: "HASH" ProvisionedThroughput: ReadCapacityUnits: 5 WriteCapacityUnits: "5"