MatchmakingConfigurationReference
- class aws_cdk.aws_gamelift.MatchmakingConfigurationReference(*, matchmaking_configuration_arn, matchmaking_configuration_name)
Bases:
object
A reference to a MatchmakingConfiguration resource.
- Parameters:
matchmaking_configuration_arn (
str
) – The ARN of the MatchmakingConfiguration resource.matchmaking_configuration_name (
str
) – The Name of the MatchmakingConfiguration 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_configuration_reference = gamelift.MatchmakingConfigurationReference( matchmaking_configuration_arn="matchmakingConfigurationArn", matchmaking_configuration_name="matchmakingConfigurationName" )
Attributes
- matchmaking_configuration_arn
The ARN of the MatchmakingConfiguration resource.
- matchmaking_configuration_name
The Name of the MatchmakingConfiguration resource.