@aws-cdk_aws-gamelift-alpha.GameSessionQueueAttributes

interface GameSessionQueueAttributes ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.GameLift.Alpha.GameSessionQueueAttributes
Gogithub.com/aws/aws-cdk-go/awscdkgameliftalpha/v2#GameSessionQueueAttributes
Javasoftware.amazon.awscdk.services.gamelift.alpha.GameSessionQueueAttributes
Pythonaws_cdk.aws_gamelift_alpha.GameSessionQueueAttributes
TypeScript (source)@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

NameTypeDescription
gameSessionQueueArn?๐Ÿ”นstringThe ARN of the gameSessionQueue.
gameSessionQueueName?๐Ÿ”นstringThe 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.