interface GameSessionQueueReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GameLift.GameSessionQueueReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgamelift#GameSessionQueueReference |
Java | software.amazon.awscdk.services.gamelift.GameSessionQueueReference |
Python | aws_cdk.aws_gamelift.GameSessionQueueReference |
TypeScript | aws-cdk-lib » aws_gamelift » GameSessionQueueReference |
A reference to a GameSessionQueue resource.
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-lib';
const gameSessionQueueReference: gamelift.GameSessionQueueReference = {
gameSessionQueueArn: 'gameSessionQueueArn',
gameSessionQueueName: 'gameSessionQueueName',
};
Properties
| Name | Type | Description |
|---|---|---|
| game | string | The ARN of the GameSessionQueue resource. |
| game | string | The Name of the GameSessionQueue resource. |
gameSessionQueueArn
Type:
string
The ARN of the GameSessionQueue resource.
gameSessionQueueName
Type:
string
The Name of the GameSessionQueue resource.

.NET
Go
Java
Python
TypeScript