我正在使用 AWS 开发工具包并使用 CloudFormation 模板创建堆栈。当我调用 create Stack 方法时,它会完美执行,并且回调会返回一个 StackID。这里的问题是创建了堆栈,但堆栈内的资源仍在创建中,整个创建过程还没有完成。我如何在我的 javascript 中知道整个创建过程已完成?
问问题
210 次
1 回答
2
您可以使用服务员stackCreateComplete
:
var params = {
StackName: 'name or the unique stack ID'
};
cloudformation.waitFor('stackCreateComplete', params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
于 2018-01-17T18:31:49.813 回答