#author(“2018-12-08T05:57:44+00:00”,“default:kazuma”,“kazuma”) AWS共通
概要 [#ld5c6323]
aws cliを使って操作する手順
EC2インスタンス [#j538306f]
EC2を停止 [#g323c994]
aws ec2 stop-instances --instance-id i-XXXXX --profile PROFILE
{
"StoppingInstances": [
{
"CurrentState": {
"Code": 64,
"Name": "stopping"
},
"InstanceId": "i-XXXXX",
"PreviousState": {
"Code": 16,
"Name": "running"
}
}
]
}