我正在尝试在云形成堆栈中运行数据管道。此堆栈引用另一个包含 Redshift 集群的堆栈的导出。当我运行它时,我收到一条错误消息,指出“'Ec2Instance',错误 = 验证此对象期间的内部错误。”;但我无法找到有关此错误或其含义的更多信息。其他对象显示相同的错误, 但它们依赖于 Ec2Instance。基于此,我假设这是级联情况。这是我的 Ec2Instance 的 PipelineObject。
{
"Id": "Ec2Instance",
"Name": "Ec2Instance",
"Fields": [
{
"Key": "type",
"StringValue": "Ec2Resource"
},
{
"Key": "role",
"StringValue": "DataPipelineDefaultRole"
},
{
"Key": "resourceRole",
"StringValue": "DataPipelineDefaultResourceRole"
},
{
"Key": "terminateAfter",
"StringValue": "1 Hour"
},
{
"Key": "actionOnTaskFailure",
"StringValue": "terminate"
},
{
"Key": "actionOnResourceFailure",
"StringValue": "retryAll"
},
{
"Key": "maximumRetries",
"StringValue": "1"
},
{
"Key": "instanceType",
"StringValue": "m1.medium"
},
{
"Key": "securityGroupIds",
"StringValue": "#{myRDSRedshiftSecurityGrps}"
},
{
"Key": "subnetId",
"StringValue": "#{myRedshiftClusterSubnetGroup}"
}
]
}