interface MatchmakingConfigurationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GameLift.MatchmakingConfigurationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgamelift#MatchmakingConfigurationReference |
Java | software.amazon.awscdk.services.gamelift.MatchmakingConfigurationReference |
Python | aws_cdk.aws_gamelift.MatchmakingConfigurationReference |
TypeScript | aws-cdk-lib » aws_gamelift » MatchmakingConfigurationReference |
A reference to a MatchmakingConfiguration resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_gamelift as gamelift } from 'aws-cdk-lib';
const matchmakingConfigurationReference: gamelift.MatchmakingConfigurationReference = {
matchmakingConfigurationArn: 'matchmakingConfigurationArn',
matchmakingConfigurationName: 'matchmakingConfigurationName',
};
Properties
| Name | Type | Description |
|---|---|---|
| matchmaking | string | The ARN of the MatchmakingConfiguration resource. |
| matchmaking | string | The Name of the MatchmakingConfiguration resource. |
matchmakingConfigurationArn
Type:
string
The ARN of the MatchmakingConfiguration resource.
matchmakingConfigurationName
Type:
string
The Name of the MatchmakingConfiguration resource.

.NET
Go
Java
Python
TypeScript