Interface CfnGameSessionQueue.FilterConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGameSessionQueue.FilterConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnGameSessionQueue

@Stability(Stable) public static interface CfnGameSessionQueue.FilterConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.gamelift.*;
 FilterConfigurationProperty filterConfigurationProperty = FilterConfigurationProperty.builder()
         .allowedLocations(List.of("allowedLocations"))
         .build();
 

See Also: