1 回答
- 最新
- 投票最多
- 评论最多
0
【以下的回答经过翻译处理】 最终,CLI命令成功运行:
$ aws lightsail stop-instance --region My-Instance_Region --instance-name My-Instance-Name --force
最重要的是首先使用--force
在aws lightsail stop-instance
中。
CLI返回以下信息:
{
"operations": [
{
"id": "some-uuid",
"resourceName": "My-Instance-Name",
"resourceType": "Instance",
"createdAt": "日期时间",
"location": {
"availabilityZone": "xxx",
"regionName": "xxx"
},
"isTerminal": false,
"operationDetails": "",
"operationType": "StopInstance",
"status": "启动",
"statusChangedAt": "日期时间"
}
]
}
相关内容
- AWS 官方已更新 2 年前
- AWS 官方已更新 5 个月前