interface GameSessionCreationLimitPolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GameLift.CfnContainerFleet.GameSessionCreationLimitPolicyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgamelift#CfnContainerFleet_GameSessionCreationLimitPolicyProperty |
Java | software.amazon.awscdk.services.gamelift.CfnContainerFleet.GameSessionCreationLimitPolicyProperty |
Python | aws_cdk.aws_gamelift.CfnContainerFleet.GameSessionCreationLimitPolicyProperty |
TypeScript | aws-cdk-lib » aws_gamelift » CfnContainerFleet » GameSessionCreationLimitPolicyProperty |
A policy that puts limits on the number of game sessions that a player can create within a specified span of time.
With this policy, you can control players' ability to consume available resources.
The policy is evaluated when a player tries to create a new game session. On receiving a CreateGameSession request, Amazon GameLift Servers checks that the player (identified by CreatorId ) has created fewer than game session limit in the specified time period.
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-lib';
const gameSessionCreationLimitPolicyProperty: gamelift.CfnContainerFleet.GameSessionCreationLimitPolicyProperty = {
newGameSessionsPerCreator: 123,
policyPeriodInMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| new | number | A policy that puts limits on the number of game sessions that a player can create within a specified span of time. |
| policy | number | The time span used in evaluating the resource creation limit policy. |
newGameSessionsPerCreator?
Type:
number
(optional)
A policy that puts limits on the number of game sessions that a player can create within a specified span of time.
With this policy, you can control players' ability to consume available resources.
The policy evaluates when a player tries to create a new game session. On receiving a CreateGameSession request, Amazon GameLift Servers checks that the player (identified by CreatorId ) has created fewer than game session limit in the specified time period.
policyPeriodInMinutes?
Type:
number
(optional)
The time span used in evaluating the resource creation limit policy.

.NET
Go
Java
Python
TypeScript