interface GameSessionQueueDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GameLift.CfnGameSessionQueuePropsMixin.GameSessionQueueDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgamelift#CfnGameSessionQueuePropsMixin_GameSessionQueueDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.gamelift.CfnGameSessionQueuePropsMixin.GameSessionQueueDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_gamelift.CfnGameSessionQueuePropsMixin.GameSessionQueueDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_gamelift » CfnGameSessionQueuePropsMixin » GameSessionQueueDestinationProperty |
A fleet or alias designated in a game session queue.
Queues fulfill requests for new game sessions by placing a new game session on any of the queue's destinations.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_gamelift as gamelift } from '@aws-cdk/cfn-property-mixins';
const gameSessionQueueDestinationProperty: gamelift.CfnGameSessionQueuePropsMixin.GameSessionQueueDestinationProperty = {
destinationArn: 'destinationArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The Amazon Resource Name (ARN) that is assigned to fleet or fleet alias. |
destinationArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) that is assigned to fleet or fleet alias.
ARNs, which include a fleet ID or alias ID and a Region name, provide a unique identifier across all Regions.

.NET
Go
Java
Python
TypeScript