interface GameSessionQueueAttributes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.GameLift.Alpha.GameSessionQueueAttributes |
![]() | github.com/aws/aws-cdk-go/awscdkgameliftalpha/v2#GameSessionQueueAttributes |
![]() | software.amazon.awscdk.services.gamelift.alpha.GameSessionQueueAttributes |
![]() | aws_cdk.aws_gamelift_alpha.GameSessionQueueAttributes |
![]() | @aws-cdk/aws-gamelift-alpha » GameSessionQueueAttributes |
A full specification of an gameSessionQueue that can be used to import it fluently into the CDK application.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as gamelift_alpha from '@aws-cdk/aws-gamelift-alpha';
const gameSessionQueueAttributes: gamelift_alpha.GameSessionQueueAttributes = {
gameSessionQueueArn: 'gameSessionQueueArn',
gameSessionQueueName: 'gameSessionQueueName',
};
Properties
Name | Type | Description |
---|---|---|
game | string | The ARN of the gameSessionQueue. |
game | string | The name of the gameSessionQueue. |
gameSessionQueueArn?
Type:
string
(optional, default: derived from gameSessionQueueName
.)
The ARN of the gameSessionQueue.
At least one of gameSessionQueueArn
and gameSessionQueueName
must be provided.
gameSessionQueueName?
Type:
string
(optional, default: derived from gameSessionQueueArn
.)
The name of the gameSessionQueue.
At least one of gameSessionQueueName
and gameSessionQueueArn
must be provided.