我如何知道 EC2 实例去休眠何时完成并且该实例何时可供使用?
我正在使用以下命令启动休眠的 EC2 实例:
$result = $client->startInstances([
'InstanceIds' => [
'i-1234567890abcdef0',
], ]);
如何创建同步调用,并仅在实例可供使用时才继续执行代码?
I'm starting an hibernated EC2 instance with the following:
$result = $client->startInstances([
'InstanceIds' => [
'i-1234567890abcdef0',
], ]);
How can I create a synchronous call, and continue code execution only when the instance is ready to use ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还可以使用服务员: https:// /docs.aws.amazon.com/sdk-for-php/v3/developer-guide/guide_waiters.html
https: //docs.aws.amazon.com/aws-sdk-php/v3/api/api-ec2-2016-11-15.html#waiters
You can also use a waiter: https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/guide_waiters.html
https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-ec2-2016-11-15.html#waiters