Interface GameLiftMatchmakingEvent.Ticket

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

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

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();
 
  • 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getStartTime

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getTicketId

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

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