MatchmakingRuleSetReference
- class aws_cdk.interfaces.aws_gamelift.MatchmakingRuleSetReference(*, matchmaking_rule_set_arn, matchmaking_rule_set_name)
Bases:
objectA 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.interfaces import aws_gamelift as interfaces_aws_gamelift matchmaking_rule_set_reference = interfaces_aws_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.