{
	"DynamicTable": {
		"Type": "AWS::DynamoDB::Table",
		"Properties": {
			"AttributeDefinitions": [{ "AttributeName": "id", "AttributeType": "S" }],
			"KeySchema": [{ "AttributeName": "id", "KeyType": "HASH" }],
			"ProvisionedThroughput": { "ReadCapacityUnits": 1, "WriteCapacityUnits": 1 },
			"TableName": { "Fn::Sub": "${AWS::Region}-table" }
		}
	}
}
