interface GameLiftQueuePlacementEventProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GameLift.Events.GameLiftQueuePlacementEvent.GameLiftQueuePlacementEventProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgamelift/events#GameLiftQueuePlacementEvent_GameLiftQueuePlacementEventProps |
Java | software.amazon.awscdk.mixins.preview.services.gamelift.events.GameLiftQueuePlacementEvent.GameLiftQueuePlacementEventProps |
Python | aws_cdk.mixins_preview.aws_gamelift.events.GameLiftQueuePlacementEvent.GameLiftQueuePlacementEventProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_gamelift ยป events ยป GameLiftQueuePlacementEvent ยป GameLiftQueuePlacementEventProps |
Props type for aws.gamelift@GameLiftQueuePlacementEvent 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 gameLiftQueuePlacementEventProps: gamelift_events.GameLiftQueuePlacementEvent.GameLiftQueuePlacementEventProps = {
dnsName: ['dnsName'],
endTime: ['endTime'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
gameSessionArn: ['gameSessionArn'],
gameSessionRegion: ['gameSessionRegion'],
ipAddress: ['ipAddress'],
placedPlayerSessions: [{
playerId: ['playerId'],
playerSessionId: ['playerSessionId'],
}],
placementId: ['placementId'],
port: ['port'],
startTime: ['startTime'],
type: ['type'],
};
Properties
| Name | Type | Description |
|---|---|---|
| dns | string[] | dnsName property. |
| end | string[] | endTime property. |
| event | AWSEvent | EventBridge event metadata. |
| game | string[] | gameSessionArn property. |
| game | string[] | gameSessionRegion property. |
| ip | string[] | ipAddress property. |
| placed | Game[] | placedPlayerSessions property. |
| placement | string[] | placementId property. |
| port? | string[] | port property. |
| start | string[] | startTime property. |
| type? | string[] | type property. |
dnsName?
Type:
string[]
(optional, default: Do not filter on this field)
dnsName property.
Specify an array of string values to match this event if the actual value of dnsName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
endTime?
Type:
string[]
(optional, default: Do not filter on this field)
endTime property.
Specify an array of string values to match this event if the actual value of endTime 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.
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.
gameSessionRegion?
Type:
string[]
(optional, default: Do not filter on this field)
gameSessionRegion property.
Specify an array of string values to match this event if the actual value of gameSessionRegion 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.
placedPlayerSessions?
Type:
Game[]
(optional, default: Do not filter on this field)
placedPlayerSessions property.
Specify an array of string values to match this event if the actual value of placedPlayerSessions is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
placementId?
Type:
string[]
(optional, default: Do not filter on this field)
placementId property.
Specify an array of string values to match this event if the actual value of placementId 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.
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.
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