MatchmakingRuleSetReference
- class aws_cdk.aws_gamelift.MatchmakingRuleSetReference(*, matchmaking_rule_set_arn, matchmaking_rule_set_name)
Bases:
object
A reference to a MatchmakingRuleSet resource.
- Parameters:
matchmaking_rule_set_arn (
str
) – The ARN of the MatchmakingRuleSet resource.matchmaking_rule_set_name (
str
) – The Name of the MatchmakingRuleSet resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_gamelift as gamelift matchmaking_rule_set_reference = gamelift.MatchmakingRuleSetReference( matchmaking_rule_set_arn="matchmakingRuleSetArn", matchmaking_rule_set_name="matchmakingRuleSetName" )
Attributes
- matchmaking_rule_set_arn
The ARN of the MatchmakingRuleSet resource.
- matchmaking_rule_set_name
The Name of the MatchmakingRuleSet resource.