MatchmakingRuleSetAttributes

class aws_cdk.aws_gamelift_alpha.MatchmakingRuleSetAttributes(*, matchmaking_rule_set_arn=None, matchmaking_rule_set_name=None)

Bases: object

(experimental) A full specification of a matchmaking ruleSet that can be used to import it fluently into the CDK application.

Parameters:
  • matchmaking_rule_set_arn (Optional[str]) – (experimental) The ARN of the matchmaking ruleSet. At least one of matchmakingRuleSetArn and matchmakingRuleSetName must be provided. Default: derived from matchmakingRuleSetName.

  • matchmaking_rule_set_name (Optional[str]) – (experimental) The unique name of the matchmaking ruleSet. At least one of ruleSetName and matchmakingRuleSetArn must be provided. Default: derived from matchmakingRuleSetArn.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_gamelift_alpha as gamelift_alpha

matchmaking_rule_set_attributes = gamelift_alpha.MatchmakingRuleSetAttributes(
    matchmaking_rule_set_arn="matchmakingRuleSetArn",
    matchmaking_rule_set_name="matchmakingRuleSetName"
)

Attributes

matchmaking_rule_set_arn

(experimental) The ARN of the matchmaking ruleSet.

At least one of matchmakingRuleSetArn and matchmakingRuleSetName must be provided.

Default:

derived from matchmakingRuleSetName.

Stability:

experimental

matchmaking_rule_set_name

(experimental) The unique name of the matchmaking ruleSet.

At least one of ruleSetName and matchmakingRuleSetArn must be provided.

Default:

derived from matchmakingRuleSetArn.

Stability:

experimental