Interface GameLiftMatchmakingEvent.GameSessionInfo

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
GameLiftMatchmakingEvent.GameSessionInfo.Jsii$Proxy
Enclosing class:
GameLiftMatchmakingEvent

@Stability(Experimental) public static interface GameLiftMatchmakingEvent.GameSessionInfo extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for GameSessionInfo.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.gamelift.events.*;
 GameSessionInfo gameSessionInfo = GameSessionInfo.builder()
         .gameSessionArn(List.of("gameSessionArn"))
         .ipAddress(List.of("ipAddress"))
         .players(List.of(GameSessionInfoItem.builder()
                 .playerId(List.of("playerId"))
                 .team(List.of("team"))
                 .build()))
         .port(List.of("port"))
         .build();
 
  • Method Details

    • getGameSessionArn

      @Stability(Experimental) @Nullable default List<String> getGameSessionArn()
      (experimental) gameSessionArn property.

      Specify an array of string values to match this event if the actual value of gameSessionArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getIpAddress

      @Stability(Experimental) @Nullable default List<String> getIpAddress()
      (experimental) ipAddress property.

      Specify an array of string values to match this event if the actual value of ipAddress is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getPlayers

      @Stability(Experimental) @Nullable default List<GameLiftMatchmakingEvent.GameSessionInfoItem> getPlayers()
      (experimental) players property.

      Specify an array of string values to match this event if the actual value of players is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getPort

      @Stability(Experimental) @Nullable default List<String> getPort()
      (experimental) port property.

      Specify an array of string values to match this event if the actual value of port is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

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