Interface GameSessionQueueAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GameSessionQueueAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:34.265Z")
@Stability(Experimental)
public interface GameSessionQueueAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.services.gamelift.alpha.*;
GameSessionQueueAttributes gameSessionQueueAttributes = GameSessionQueueAttributes.builder()
.gameSessionQueueArn("gameSessionQueueArn")
.gameSessionQueueName("gameSessionQueueName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forGameSessionQueueAttributesstatic final classAn implementation forGameSessionQueueAttributes -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGameSessionQueueArn
(experimental) The ARN of the gameSessionQueue.At least one of
gameSessionQueueArnandgameSessionQueueNamemust be provided.Default: derived from `gameSessionQueueName`.
-
getGameSessionQueueName
(experimental) The name of the gameSessionQueue.At least one of
gameSessionQueueNameandgameSessionQueueArnmust be provided.Default: derived from `gameSessionQueueArn`.
-
builder
- Returns:
- a
GameSessionQueueAttributes.BuilderofGameSessionQueueAttributes
-