Json 无法确定哪个属性值为空?

Json 无法确定哪个属性值为空?,json,amazon-web-services,amazon-cloudformation,Json,Amazon Web Services,Amazon Cloudformation,当使用下面的模板(预先存在的嵌套堆栈的一部分)运行AWS CloudFormation时,我遇到了一个错误,即“属性值不能为空”。对于我尝试为其创建CloudWatch报警的两个lambda项。我曾尝试将其作为嵌套堆栈的一部分运行,也尝试将其作为模板本身运行,但没有效果。有人能提供一些见解吗 { "AWSTemplateFormatVersion": "2010-09-09", "Description": "Creation of CloudWatch Alarms",

当使用下面的模板(预先存在的嵌套堆栈的一部分)运行AWS CloudFormation时,我遇到了一个错误,即“属性值不能为空”。对于我尝试为其创建CloudWatch报警的两个lambda项。我曾尝试将其作为嵌套堆栈的一部分运行,也尝试将其作为模板本身运行,但没有效果。有人能提供一些见解吗

{
    "AWSTemplateFormatVersion": "2010-09-09",
    "Description": "Creation of CloudWatch Alarms",
    "Resources": {
        "CLFirstLambdaAlarm": {
            "Type": "AWS::CloudWatch::Alarm",
            "Properties": {
                "AlarmName": "CLFirstLambdaErrors",
                "AlarmDescription": "Alarms when an error occurs on the first lambda",
                "AlarmActions": [{ "Ref": "AlarmNotificationTopic" }],
                "MetricName": "Errors",
                "Namespace": "AWS/Lambda",
                "Dimensions": [{
                        "Name": "first-lambda"
                    },
                    {
                        "Value": { "Fn::ImportValue": "CLFirstLambda" }
                    }
                ],
                "ComparisonOperator": "GreaterThanOrEqualToThreshold",
                "EvaluationPeriods": "1",
                "Period": "60",
                "Unit": "Count",
                "Statistic": "Sum",
                "Threshold": "1",
                "TreatMissingData": "notBreaching"
                    }
        },
        "CLSecondLambdaAlarm": {
            "Type": "AWS::CloudWatch::Alarm",
            "Properties": {
                "AlarmName": "CLSecondLambdaErrors",
                "AlarmDescription": "Alarms when an error occurs on the second lambda",
                "AlarmActions": [{ "Ref": "AlarmNotificationTopic" }],
                "MetricName": "Errors",
                "Namespace": "AWS/Lambda",
                "Dimensions": [{
                        "Name": "second-lambda"
                    },
                    {
                        "Value": { "Fn::ImportValue": "CLSecondLambda" }
                    }
                ],
                "ComparisonOperator": "GreaterThanOrEqualToThreshold",
                "EvaluationPeriods": "1",
                "Period": "60",
                "Unit": "Count",
                "Statistic": "Sum",
                "Threshold": "1",
                "TreatMissingData": "notBreaching"
            }
        },
        "AlarmNotificationTopic": {
            "Type": "AWS::SNS::Topic",
            "Properties": {
                "TopicName": "cl-alarm-topic",
                "Subscription": [{
                "Endpoint": "me@domain.com",
                "Protocol": "email"
                }]
            }
        }
    },
    "Outputs": {
        "AlarmNotificationTopicArn": {
            "Description": "ARN of AlarmNotificationTopic",
            "Value": { "Ref" : "AlarmNotificationTopic" },
            "Export": { "Name" : "AlarmNotificationTopic" }
        }
    }
}
提供了更详细的错误消息:

E3003 Property Value missing at Resources/CLFirstLambdaAlarm/Properties/Dimensions/0
template.json:13:30

E3003 Property Name missing at Resources/CLFirstLambdaAlarm/Properties/Dimensions/1
template.json:16:19

E3003 Property Value missing at Resources/CLSecondLambdaAlarm/Properties/Dimensions/0
template.json:37:30

E3003 Property Name missing at Resources/CLSecondLambdaAlarm/Properties/Dimensions/1
template.json:40:19


请尝试以下
AWS::CloudWatch::Alarm.Dimensions
属性:

              "Dimensions": [{
                      "Name": "first-lambda",
                      "Value": { "Fn::ImportValue": "CLFirstLambda" }
                  }
              ],


              "Dimensions": [{
                      "Name": "second-lambda",
                      "Value": { "Fn::ImportValue": "CLSecondLambda" }
                  }
              ],

提供了更详细的错误消息:

E3003 Property Value missing at Resources/CLFirstLambdaAlarm/Properties/Dimensions/0
template.json:13:30

E3003 Property Name missing at Resources/CLFirstLambdaAlarm/Properties/Dimensions/1
template.json:16:19

E3003 Property Value missing at Resources/CLSecondLambdaAlarm/Properties/Dimensions/0
template.json:37:30

E3003 Property Name missing at Resources/CLSecondLambdaAlarm/Properties/Dimensions/1
template.json:40:19


请尝试以下
AWS::CloudWatch::Alarm.Dimensions
属性:

              "Dimensions": [{
                      "Name": "first-lambda",
                      "Value": { "Fn::ImportValue": "CLFirstLambda" }
                  }
              ],


              "Dimensions": [{
                      "Name": "second-lambda",
                      "Value": { "Fn::ImportValue": "CLSecondLambda" }
                  }
              ],


您应该至少能够知道它在哪个资源上失败了?您应该至少能够知道它在哪个资源上失败了?