PropertyDefinition이 일치하지 않습니다. dynamoDB 테이블을 생성하기 위해 cloudformation UI에서 사용중인 다음 템플릿이 있습니다. PrimaryKey 를 ID로 , sortKey 를 Value 로 사용하여 테이블을 만들고 싶습니다. { "AWSTemplateFormatVersion" : "2010-09-09", "Description" : "DB Description", "Resources" : { "TableName" : { "Type" : "AWS::DynamoDB::Table", "Properties" : { "AttributeDefinitions": [ { "AttributeName" : "ID", "AttributeType" : "S" }, { "Attribut..