interface GameSessionInfoItem
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GameLift.Events.GameLiftMatchmakingEvent.GameSessionInfoItem |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgamelift/events#GameLiftMatchmakingEvent_GameSessionInfoItem |
Java | software.amazon.awscdk.mixins.preview.services.gamelift.events.GameLiftMatchmakingEvent.GameSessionInfoItem |
Python | aws_cdk.mixins_preview.aws_gamelift.events.GameLiftMatchmakingEvent.GameSessionInfoItem |
TypeScript | @aws-cdk/mixins-preview ยป aws_gamelift ยป events ยป GameLiftMatchmakingEvent ยป GameSessionInfoItem |
Type definition for GameSessionInfoItem.
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 gameSessionInfoItem: gamelift_events.GameLiftMatchmakingEvent.GameSessionInfoItem = {
playerId: ['playerId'],
team: ['team'],
};
Properties
| Name | Type | Description |
|---|---|---|
| player | string[] | playerId property. |
| team? | string[] | team property. |
playerId?
Type:
string[]
(optional, default: Do not filter on this field)
playerId property.
Specify an array of string values to match this event if the actual value of playerId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
team?
Type:
string[]
(optional, default: Do not filter on this field)
team property.
Specify an array of string values to match this event if the actual value of team 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