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