Interface MatchmakingRuleSetProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
MatchmakingRuleSetProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.715Z") @Stability(Experimental) public interface MatchmakingRuleSetProps extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for a new matchmaking ruleSet.

Example:

 MatchmakingRuleSet.Builder.create(this, "RuleSet")
         .matchmakingRuleSetName("my-test-ruleset")
         .content(RuleSetContent.fromJsonFile(join(__dirname, "my-ruleset", "ruleset.json")))
         .build();
 
  • Method Details

    • getContent

      @Stability(Experimental) @NotNull RuleSetContent getContent()
      (experimental) A collection of matchmaking rules.
    • getMatchmakingRuleSetName

      @Stability(Experimental) @NotNull String getMatchmakingRuleSetName()
      (experimental) A unique identifier for the matchmaking rule set.

      A matchmaking configuration identifies the rule set it uses by this name value.

      Note: the rule set name is different from the optional name field in the rule set body

    • builder

      @Stability(Experimental) static MatchmakingRuleSetProps.Builder builder()
      Returns:
      a MatchmakingRuleSetProps.Builder of MatchmakingRuleSetProps