Interface GameLiftMatchmakingEvent.Ticket
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GameLiftMatchmakingEvent.Ticket.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.*;
Ticket ticket = Ticket.builder()
.players(List.of(GameSessionInfoItem.builder()
.playerId(List.of("playerId"))
.team(List.of("team"))
.build()))
.startTime(List.of("startTime"))
.ticketId(List.of("ticketId"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forGameLiftMatchmakingEvent.Ticketstatic final classAn implementation forGameLiftMatchmakingEvent.Ticket -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) players property.(experimental) startTime property.(experimental) ticketId property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
-
getStartTime
(experimental) startTime property.Specify an array of string values to match this event if the actual value of startTime 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
-
getTicketId
(experimental) ticketId property.Specify an array of string values to match this event if the actual value of ticketId 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
-