Skip to content

Commit

Permalink
Updated example output to include the ZoneID
Browse files Browse the repository at this point in the history
The ZoneId is a standard part of the output, and this example is updated to include that.
  • Loading branch information
bisdavid authored Nov 27, 2018
1 parent 7b1ca4a commit f48a48b
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions awscli/examples/ec2/describe-availability-zones.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,24 @@ Output::
"AvailabilityZones": [
{
"State": "available",
"RegionName": "us-east-1",
"Messages": [],
"ZoneName": "us-east-1b"
"RegionName": "us-west-2",
"ZoneName": "us-west-2a",
"ZoneId": "usw2-az2"
},
{
"State": "available",
"RegionName": "us-east-1",
"Messages": [],
"ZoneName": "us-east-1c"
"RegionName": "us-west-2",
"ZoneName": "us-west-2b",
"ZoneId": "usw2-az1"
},
{
"State": "available",
"RegionName": "us-east-1",
"Messages": [],
"ZoneName": "us-east-1d"
"RegionName": "us-west-2",
"ZoneName": "us-west-2c",
"ZoneId": "usw2-az3"
}
]
}

0 comments on commit f48a48b

Please sign in to comment.