describeFleetAttributes method
Retrieves core properties, including configuration, status, and metadata, for a fleet.
To get attributes for one or more fleets, provide a list of fleet IDs or fleet ARNs. To get attributes for all fleets, do not specify a fleet identifier. When requesting attributes for multiple fleets, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a FleetAttributes object is returned for each fleet requested, 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 list of unique fleet identifiers to retrieve attributes 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<DescribeFleetAttributesOutput> describeFleetAttributes({
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.DescribeFleetAttributes'
};
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 DescribeFleetAttributesOutput.fromJson(jsonResponse.body);
}