interface MatchmakingConfigurationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GameLift.MatchmakingConfigurationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsgamelift#MatchmakingConfigurationReference |
Java | software.amazon.awscdk.interfaces.gamelift.MatchmakingConfigurationReference |
Python | aws_cdk.interfaces.aws_gamelift.MatchmakingConfigurationReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_gamelift } from 'aws-cdk-lib/interfaces';
const matchmakingConfigurationReference: interfaces_aws_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