interface FilterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GameLift.CfnGameSessionQueuePropsMixin.FilterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgamelift#CfnGameSessionQueuePropsMixin_FilterConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.gamelift.CfnGameSessionQueuePropsMixin.FilterConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_gamelift.CfnGameSessionQueuePropsMixin.FilterConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_gamelift » CfnGameSessionQueuePropsMixin » FilterConfigurationProperty |
A list of fleet locations where a game session queue can place new game sessions.
You can use a filter to temporarily turn off placements for specific locations. For queues that have multi-location fleets, you can use a filter configuration allow placement with some, but not all of these locations.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_gamelift as gamelift } from '@aws-cdk/cfn-property-mixins';
const filterConfigurationProperty: gamelift.CfnGameSessionQueuePropsMixin.FilterConfigurationProperty = {
allowedLocations: ['allowedLocations'],
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | A list of locations to allow game session placement in, in the form of AWS Region codes such as us-west-2 . |
allowedLocations?
Type:
string[]
(optional)
A list of locations to allow game session placement in, in the form of AWS Region codes such as us-west-2 .

.NET
Go
Java
Python
TypeScript