interface GameLiftMatchmakingEventProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GameLift.Events.GameLiftMatchmakingEvent.GameLiftMatchmakingEventProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgamelift/events#GameLiftMatchmakingEvent_GameLiftMatchmakingEventProps |
Java | software.amazon.awscdk.mixins.preview.services.gamelift.events.GameLiftMatchmakingEvent.GameLiftMatchmakingEventProps |
Python | aws_cdk.mixins_preview.aws_gamelift.events.GameLiftMatchmakingEvent.GameLiftMatchmakingEventProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_gamelift ยป events ยป GameLiftMatchmakingEvent ยป GameLiftMatchmakingEventProps |
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 { events as gamelift_events } from '@aws-cdk/mixins-preview/aws-gamelift';
const gameLiftMatchmakingEventProps: gamelift_events.GameLiftMatchmakingEvent.GameLiftMatchmakingEventProps = {
acceptanceRequired: ['acceptanceRequired'],
acceptanceTimeout: ['acceptanceTimeout'],
customEventData: ['customEventData'],
estimatedWaitMillis: ['estimatedWaitMillis'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
gameSessionInfo: {
gameSessionArn: ['gameSessionArn'],
ipAddress: ['ipAddress'],
players: [{
playerId: ['playerId'],
team: ['team'],
}],
port: ['port'],
},
matchId: ['matchId'],
message: ['message'],
reason: ['reason'],
ruleEvaluationMetrics: [{
failedCount: ['failedCount'],
passedCount: ['passedCount'],
ruleName: ['ruleName'],
}],
tickets: [{
players: [{
playerId: ['playerId'],
team: ['team'],
}],
startTime: ['startTime'],
ticketId: ['ticketId'],
}],
type: ['type'],
};
Properties
| Name | Type | Description |
|---|---|---|
| acceptance | string[] | acceptanceRequired property. |
| acceptance | string[] | acceptanceTimeout property. |
| custom | string[] | customEventData property. |
| estimated | string[] | estimatedWaitMillis property. |
| event | AWSEvent | EventBridge event metadata. |
| game | Game | gameSessionInfo property. |
| match | string[] | matchId property. |
| message? | string[] | message property. |
| reason? | string[] | reason property. |
| rule | Rule[] | ruleEvaluationMetrics property. |
| tickets? | Ticket[] | tickets property. |
| type? | string[] | type property. |
acceptanceRequired?
Type:
string[]
(optional, default: Do not filter on this field)
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.
acceptanceTimeout?
Type:
string[]
(optional, default: Do not filter on this field)
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.
customEventData?
Type:
string[]
(optional, default: Do not filter on this field)
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.
estimatedWaitMillis?
Type:
string[]
(optional, default: Do not filter on this field)
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.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
gameSessionInfo?
Type:
Game
(optional, default: Do not filter on this field)
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.
matchId?
Type:
string[]
(optional, default: Do not filter on this field)
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.
message?
Type:
string[]
(optional, default: Do not filter on this field)
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.
reason?
Type:
string[]
(optional, default: Do not filter on this field)
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.
ruleEvaluationMetrics?
Type:
Rule[]
(optional, default: Do not filter on this field)
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.
tickets?
Type:
Ticket[]
(optional, default: Do not filter on this field)
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.
type?
Type:
string[]
(optional, default: Do not filter on this field)
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.

.NET
Go
Java
Python
TypeScript