describeFleetUtilization method
Retrieves utilization statistics for one or more fleets. These statistics provide insight into how available hosting resources are currently being used. To get statistics on available hosting resources, see DescribeFleetCapacity.
You can request utilization data for all fleets, or specify a list of one or more fleet IDs. When requesting multiple fleets, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a FleetUtilization object is returned for each requested fleet ID, unless the fleet identifier is not found. Learn more
Related operations
- CreateFleet
- ListFleets
- DeleteFleet
- Describe fleets:
- UpdateFleetAttributes
- StartFleetActions or StopFleetActions
May throw InternalServiceException. May throw NotFoundException. May throw InvalidRequestException. May throw UnauthorizedException.
Parameter fleetIds
:
A unique identifier for a fleet(s) to retrieve utilization data for. You
can use either the fleet ID or ARN value. To retrieve attributes for all
current fleets, do not include this parameter. If the list of fleet
identifiers includes fleets that don't currently exist, the request
succeeds but no attributes for that fleet are returned.
Parameter limit
:
The maximum number of results to return. Use this parameter with
NextToken
to get results as a set of sequential pages. This
parameter is ignored when the request specifies one or a list of fleet
IDs.
Parameter nextToken
:
Token that indicates the start of the next sequential page of results. Use
the token that is returned with a previous call to this operation. To
start at the beginning of the result set, do not specify a value. This
parameter is ignored when the request specifies one or a list of fleet
IDs.
Implementation
Future<DescribeFleetUtilizationOutput> describeFleetUtilization({
List<String>? fleetIds,
int? limit,
String? nextToken,
}) async {
_s.validateNumRange(
'limit',
limit,
1,
1152921504606846976,
);
_s.validateStringLength(
'nextToken',
nextToken,
1,
1024,
);
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'GameLift.DescribeFleetUtilization'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
if (fleetIds != null) 'FleetIds': fleetIds,
if (limit != null) 'Limit': limit,
if (nextToken != null) 'NextToken': nextToken,
},
);
return DescribeFleetUtilizationOutput.fromJson(jsonResponse.body);
}