MatchmakingRuleSetProps

class aws_cdk.aws_gamelift_alpha.MatchmakingRuleSetProps(*, content, matchmaking_rule_set_name)

Bases: object

(experimental) Properties for a new matchmaking ruleSet.

Parameters:
  • content (RuleSetContent) – (experimental) A collection of matchmaking rules.

  • matchmaking_rule_set_name (str) – (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

Stability:

experimental

ExampleMetadata:

infused

Example:

gamelift.MatchmakingRuleSet(self, "RuleSet",
    matchmaking_rule_set_name="my-test-ruleset",
    content=gamelift.RuleSetContent.from_json_file(path.join(__dirname, "my-ruleset", "ruleset.json"))
)

Attributes

content

(experimental) A collection of matchmaking rules.

Stability:

experimental

matchmaking_rule_set_name

(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

Stability:

experimental