Interface GameSessionQueueAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GameSessionQueueAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:18.841Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forGameSessionQueueAttributes
static final class
An 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
gameSessionQueueArn
andgameSessionQueueName
must be provided.Default: derived from `gameSessionQueueName`.
-
getGameSessionQueueName
(experimental) The name of the gameSessionQueue.At least one of
gameSessionQueueName
andgameSessionQueueArn
must be provided.Default: derived from `gameSessionQueueArn`.
-
builder
- Returns:
- a
GameSessionQueueAttributes.Builder
ofGameSessionQueueAttributes
-