Interface GameLiftMatchmakingEvent.GameLiftMatchmakingEventProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GameLiftMatchmakingEvent.GameLiftMatchmakingEventProps.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.*;
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forGameLiftMatchmakingEvent.GameLiftMatchmakingEventPropsstatic final classAn implementation forGameLiftMatchmakingEvent.GameLiftMatchmakingEventProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) acceptanceRequired property.(experimental) acceptanceTimeout property.(experimental) customEventData property.(experimental) estimatedWaitMillis property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) gameSessionInfo property.(experimental) matchId property.(experimental) message property.(experimental) reason property.(experimental) ruleEvaluationMetrics property.default List<GameLiftMatchmakingEvent.Ticket> (experimental) tickets property.getType()(experimental) type property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
@Stability(Experimental) static GameLiftMatchmakingEvent.GameLiftMatchmakingEventProps.Builder builder()
-