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