Interface GameSessionQueueAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
GameSessionQueueAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.685Z") @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();
 
  • Method Details

    • getGameSessionQueueArn

      @Stability(Experimental) @Nullable default String getGameSessionQueueArn()
      (experimental) The ARN of the gameSessionQueue.

      At least one of gameSessionQueueArn and gameSessionQueueName must be provided.

      Default: derived from `gameSessionQueueName`.

    • getGameSessionQueueName

      @Stability(Experimental) @Nullable default String getGameSessionQueueName()
      (experimental) The name of the gameSessionQueue.

      At least one of gameSessionQueueName and gameSessionQueueArn must be provided.

      Default: derived from `gameSessionQueueArn`.

    • builder

      @Stability(Experimental) static GameSessionQueueAttributes.Builder builder()
      Returns:
      a GameSessionQueueAttributes.Builder of GameSessionQueueAttributes