Interface GameLiftMatchmakingEvent.GameLiftMatchmakingEventProps

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

@Stability(Experimental) public static interface GameLiftMatchmakingEvent.GameLiftMatchmakingEventProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.gamelift@GameLiftMatchmakingEvent event.

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.*;
 GameLiftMatchmakingEventProps gameLiftMatchmakingEventProps = GameLiftMatchmakingEventProps.builder()
         .acceptanceRequired(List.of("acceptanceRequired"))
         .acceptanceTimeout(List.of("acceptanceTimeout"))
         .customEventData(List.of("customEventData"))
         .estimatedWaitMillis(List.of("estimatedWaitMillis"))
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .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())
         .matchId(List.of("matchId"))
         .message(List.of("message"))
         .reason(List.of("reason"))
         .ruleEvaluationMetrics(List.of(RuleEvaluationMetrics.builder()
                 .failedCount(List.of("failedCount"))
                 .passedCount(List.of("passedCount"))
                 .ruleName(List.of("ruleName"))
                 .build()))
         .tickets(List.of(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()))
         .type(List.of("type"))
         .build();
 
  • Method Details

    • getAcceptanceRequired

      @Stability(Experimental) @Nullable default List<String> getAcceptanceRequired()
      (experimental) acceptanceRequired property.

      Specify an array of string values to match this event if the actual value of acceptanceRequired 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

    • getAcceptanceTimeout

      @Stability(Experimental) @Nullable default List<String> getAcceptanceTimeout()
      (experimental) acceptanceTimeout property.

      Specify an array of string values to match this event if the actual value of acceptanceTimeout 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

    • getCustomEventData

      @Stability(Experimental) @Nullable default List<String> getCustomEventData()
      (experimental) customEventData property.

      Specify an array of string values to match this event if the actual value of customEventData 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

    • getEstimatedWaitMillis

      @Stability(Experimental) @Nullable default List<String> getEstimatedWaitMillis()
      (experimental) estimatedWaitMillis property.

      Specify an array of string values to match this event if the actual value of estimatedWaitMillis 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

    • getEventMetadata

      @Stability(Experimental) @Nullable default AWSEventMetadataProps getEventMetadata()
      (experimental) EventBridge event metadata.

      Default: - -

    • getGameSessionInfo

      @Stability(Experimental) @Nullable default GameLiftMatchmakingEvent.GameSessionInfo getGameSessionInfo()
      (experimental) gameSessionInfo property.

      Specify an array of string values to match this event if the actual value of gameSessionInfo 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

    • getMatchId

      @Stability(Experimental) @Nullable default List<String> getMatchId()
      (experimental) matchId property.

      Specify an array of string values to match this event if the actual value of matchId 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

    • getMessage

      @Stability(Experimental) @Nullable default List<String> getMessage()
      (experimental) message property.

      Specify an array of string values to match this event if the actual value of message 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

    • getReason

      @Stability(Experimental) @Nullable default List<String> getReason()
      (experimental) reason property.

      Specify an array of string values to match this event if the actual value of reason 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

    • getRuleEvaluationMetrics

      @Stability(Experimental) @Nullable default List<GameLiftMatchmakingEvent.RuleEvaluationMetrics> getRuleEvaluationMetrics()
      (experimental) ruleEvaluationMetrics property.

      Specify an array of string values to match this event if the actual value of ruleEvaluationMetrics 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

    • getTickets

      @Stability(Experimental) @Nullable default List<GameLiftMatchmakingEvent.Ticket> getTickets()
      (experimental) tickets property.

      Specify an array of string values to match this event if the actual value of tickets 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

    • getType

      @Stability(Experimental) @Nullable default List<String> getType()
      (experimental) type property.

      Specify an array of string values to match this event if the actual value of type 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.GameLiftMatchmakingEventProps.Builder builder()
      Returns:
      a GameLiftMatchmakingEvent.GameLiftMatchmakingEventProps.Builder of GameLiftMatchmakingEvent.GameLiftMatchmakingEventProps