我正在尝试使用云形成在胶水上创建数据库,但是由于出现以下错误而失败。我想念什么吗?
Property validation failure: [The property {/DatabaseInput} is required, The property {/CatalogId} is required]
这是我的模板代码块的外观
GlueDatabase:
Type: AWS::Glue::Database
Properties:
CatalogId: !Ref AWS::AccountId
DatabaseInput: !Ref TeamName
答案 0 :(得分:1)
根据docs,DatabaseInput
应该具有以下结构:
GlueDatabase:
Type: AWS::Glue::Database
Properties:
CatalogId: !Ref AWS::AccountId
DatabaseInput:
Description: String
LocationUri: String
Name: String
Parameters: Json
因此,问题是,您的节奏中TeamName
是什么?