interface PriorityConfiguration
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.GameLift.Alpha.PriorityConfiguration |
Go | github.com/aws/aws-cdk-go/awscdkgameliftalpha/v2#PriorityConfiguration |
Java | software.amazon.awscdk.services.gamelift.alpha.PriorityConfiguration |
Python | aws_cdk.aws_gamelift_alpha.PriorityConfiguration |
TypeScript (source) | @aws-cdk/aws-gamelift-alpha » PriorityConfiguration |
Custom prioritization settings for use by a game session queue when placing new game sessions with available game servers.
When defined, this configuration replaces the default FleetIQ prioritization process, which is as follows:
If player latency data is included in a game session request, destinations and locations are prioritized first based on lowest average latency (1), then on lowest hosting cost (2), then on destination list order (3), and finally on location (alphabetical) (4). This approach ensures that the queue's top priority is to place game sessions where average player latency is lowest, and--if latency is the same--where the hosting cost is less, etc.
If player latency data is not included, destinations and locations are prioritized first on destination list order (1), and then on location (alphabetical) (2). This approach ensures that the queue's top priority is to place game sessions on the first destination fleet listed. If that fleet has multiple locations, the game session is placed on the first location (when listed alphabetically).
Changing the priority order will affect how game sessions are placed.
Example
declare const fleet: gamelift.BuildFleet;
declare const topic: sns.Topic;
new gamelift.GameSessionQueue(this, 'MyGameSessionQueue', {
gameSessionQueueName: 'test-gameSessionQueue',
customEventData: 'test-event-data',
allowedLocations: ['eu-west-1', 'eu-west-2'],
destinations: [fleet],
notificationTarget: topic,
playerLatencyPolicies: [{
maximumIndividualPlayerLatency: Duration.millis(100),
policyDuration: Duration.seconds(300),
}],
priorityConfiguration: {
locationOrder: [
'eu-west-1',
'eu-west-2',
],
priorityOrder: [
gamelift.PriorityType.LATENCY,
gamelift.PriorityType.COST,
gamelift.PriorityType.DESTINATION,
gamelift.PriorityType.LOCATION,
],
},
timeout: Duration.seconds(300),
});
Properties
Name | Type | Description |
---|---|---|
location | string[] | The prioritization order to use for fleet locations, when the PriorityOrder property includes LOCATION. |
priority | Priority [] | The recommended sequence to use when prioritizing where to place new game sessions. |
locationOrder
Type:
string[]
The prioritization order to use for fleet locations, when the PriorityOrder property includes LOCATION.
Locations are identified by AWS Region codes such as `us-west-2.
Each location can only be listed once.
priorityOrder
Type:
Priority
[]
The recommended sequence to use when prioritizing where to place new game sessions.
Each type can only be listed once.