Class StandaloneMatchmakingConfiguration

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.gamelift.alpha.MatchmakingConfigurationBase
software.amazon.awscdk.services.gamelift.alpha.StandaloneMatchmakingConfiguration
All Implemented Interfaces:
IResource, IMatchmakingConfiguration, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.738Z") @Stability(Experimental) public class StandaloneMatchmakingConfiguration extends MatchmakingConfigurationBase
(experimental) A FlexMatch matchmaker process does the work of building a game match.

It manages the pool of matchmaking requests received, forms teams for a match, processes and selects players to find the best possible player groups, and initiates the process of placing and starting a game session for the match. This topic describes the key aspects of a matchmaker and how to configure one customized for your game.

Example:

 MatchmakingRuleSet ruleSet;
 StandaloneMatchmakingConfiguration.Builder.create(this, "StandaloneMatchmaking")
         .matchmakingConfigurationName("test-standalone-config-name")
         .ruleSet(ruleSet)
         .build();
 

See Also:
  • Constructor Details

    • StandaloneMatchmakingConfiguration

      protected StandaloneMatchmakingConfiguration(software.amazon.jsii.JsiiObjectRef objRef)
    • StandaloneMatchmakingConfiguration

      protected StandaloneMatchmakingConfiguration(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • StandaloneMatchmakingConfiguration

      @Stability(Experimental) public StandaloneMatchmakingConfiguration(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull StandaloneMatchmakingConfigurationProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
  • Method Details