Created
February 1, 2017 15:17
-
-
Save Alexhha/52e77385128ee60695321a5e30f3f197 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ aws ec2 describe-instance-status --instance-ids i-0538dc72cc1baffdb --profile cardpool-dev --region us-east-1 | |
{ | |
"InstanceStatuses": [ | |
{ | |
"InstanceId": "i-0538dc72cc1baffdb", | |
"InstanceState": { | |
"Code": 16, | |
"Name": "running" | |
}, | |
"AvailabilityZone": "us-east-1e", | |
"SystemStatus": { | |
"Status": "ok", | |
"Details": [ | |
{ | |
"Status": "passed", | |
"Name": "reachability" | |
} | |
] | |
}, | |
"InstanceStatus": { | |
"Status": "ok", | |
"Details": [ | |
{ | |
"Status": "passed", | |
"Name": "reachability" | |
} | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment