interface GameSessionQueueReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GameLift.GameSessionQueueReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsgamelift#GameSessionQueueReference |
Java | software.amazon.awscdk.interfaces.gamelift.GameSessionQueueReference |
Python | aws_cdk.interfaces.aws_gamelift.GameSessionQueueReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_gamelift } from 'aws-cdk-lib/interfaces';
const gameSessionQueueReference: interfaces_aws_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