我在使用自定义配置创建 AmazonMQ 时遇到问题。我以某种方式遵循了文档中的aws complex 示例:
amazonMq:
Type: "AWS::AmazonMQ::Broker"
Properties:
Configuration:
Id: !GetAtt amazonMqConf.Id
Revision: !GetAtt amazonMqConf.Revision
# ... the rest of Broker attributes ... #
amazonMqConf:
Type: AWS::AmazonMQ::Configuration
Properties:
Data: ""
# ... the rest of Config attributes ... #
我最终得到了错误:
属性“Id”不存在
我错过了什么?