Interface GameLiftMatchmakingEvent.GameSessionInfo
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GameLiftMatchmakingEvent.GameSessionInfo.Jsii$Proxy
- Enclosing class:
GameLiftMatchmakingEvent
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forGameLiftMatchmakingEvent.GameSessionInfostatic final classAn implementation forGameLiftMatchmakingEvent.GameSessionInfo -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-