1**To view capacity status for a list of fleets**
2
3The following ``describe-fleet-capacity`` example retrieves current capacity for two specified fleets. ::
4
5    aws gamelift describe-fleet-capacity \
6        --fleet-ids arn:aws:gamelift:us-west-2::fleet/fleet-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111 fleet-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222
7
8Output::
9
10    {
11        "FleetCapacity": [
12            {
13                "FleetId": "fleet-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
14                "InstanceType": "c5.large",
15                "InstanceCounts": {
16                    "DESIRED": 10,
17                    "MINIMUM": 1,
18                    "MAXIMUM": 20,
19                    "PENDING": 0,
20                    "ACTIVE": 10,
21                    "IDLE": 3,
22                    "TERMINATING": 0
23                }
24            },
25            {
26                "FleetId": "fleet-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
27                "InstanceType": "c5.large",
28                "InstanceCounts": {
29                    "DESIRED": 13,
30                    "MINIMUM": 1,
31                    "MAXIMUM": 20,
32                    "PENDING": 0,
33                    "ACTIVE": 15,
34                    "IDLE": 2,
35                    "TERMINATING": 2
36                }
37            }
38
39        ]
40    }
41
42For more information, see `GameLift Metrics for Fleets <https://docs.aws.amazon.com/gamelift/latest/developerguide/monitoring-cloudwatch.html#gamelift-metrics-fleet>`__ in the *Amazon GameLift Developer Guide*.
43