Skip to main content

fleet_location_utilizations

Creates, updates, deletes, gets or lists a fleet_location_utilizations resource.

Overview

Namefleet_location_utilizations
TypeResource
Idaws.gamelift.fleet_location_utilizations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
active_game_session_countintegerThe number of active game sessions that are currently being hosted across all instances in the fleet location.
active_server_process_countintegerThe number of server processes in ACTIVE status that are currently running across all instances in the fleet location.
current_player_session_countintegerThe number of active player sessions that are currently being hosted across all instances in the fleet location.
fleet_arnstringThe Amazon Resource Name (ARN) that is assigned to a Amazon GameLift Servers fleet resource and uniquely identifies it. ARNs are unique across all Regions. Format is arn:aws:gamelift:<region>::fleet/fleet-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912. (pattern: <code>^arn:.*:[a-z]*fleet/[a-z]*fleet-[a-zA-Z0-9-]+$</code>)
fleet_idstringA unique identifier for the fleet associated with the location. (pattern: <code>^[a-z]*fleet-[a-zA-Z0-9-]+$</code>)
locationstringThe fleet location for the fleet utilization information, expressed as an Amazon Web Services Region code, such as us-west-2. (pattern: <code>^[A-Za-z0-9-]+$</code>)
maximum_player_session_countintegerThe maximum number of players allowed across all game sessions that are currently being hosted across all instances in the fleet location.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_fleet_location_utilizationselectregionThis API works with the following fleet types: EC2, Anywhere Retrieves current usage data for a fleet location. Utilization data provides a snapshot of current game hosting activity at the requested location. Use this operation to retrieve utilization information for a fleet's remote location or home Region (you can also retrieve home Region utilization by calling DescribeFleetUtilization). To retrieve utilization data, identify a fleet and location. If successful, a FleetUtilization object is returned for the requested fleet location. Learn more Setting up Amazon GameLift Servers fleets Amazon GameLift Servers service locations for managed hosting GameLift metrics for fleets

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

This API works with the following fleet types: EC2, Anywhere Retrieves current usage data for a fleet location. Utilization data provides a snapshot of current game hosting activity at the requested location. Use this operation to retrieve utilization information for a fleet's remote location or home Region (you can also retrieve home Region utilization by calling DescribeFleetUtilization). To retrieve utilization data, identify a fleet and location. If successful, a FleetUtilization object is returned for the requested fleet location. Learn more Setting up Amazon GameLift Servers fleets Amazon GameLift Servers service locations for managed hosting GameLift metrics for fleets

SELECT
active_game_session_count,
active_server_process_count,
current_player_session_count,
fleet_arn,
fleet_id,
location,
maximum_player_session_count
FROM aws.gamelift.fleet_location_utilizations
WHERE region = '{{ region }}' -- required
;