interface MatchmakingRuleSetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GameLift.MatchmakingRuleSetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsgamelift#MatchmakingRuleSetReference |
Java | software.amazon.awscdk.interfaces.gamelift.MatchmakingRuleSetReference |
Python | aws_cdk.interfaces.aws_gamelift.MatchmakingRuleSetReference |
TypeScript | aws-cdk-lib » interfaces » aws_gamelift » MatchmakingRuleSetReference |
A reference to a MatchmakingRuleSet 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 matchmakingRuleSetReference: interfaces_aws_gamelift.MatchmakingRuleSetReference = {
matchmakingRuleSetArn: 'matchmakingRuleSetArn',
matchmakingRuleSetName: 'matchmakingRuleSetName',
};
Properties
| Name | Type | Description |
|---|---|---|
| matchmaking | string | The ARN of the MatchmakingRuleSet resource. |
| matchmaking | string | The Name of the MatchmakingRuleSet resource. |
matchmakingRuleSetArn
Type:
string
The ARN of the MatchmakingRuleSet resource.
matchmakingRuleSetName
Type:
string
The Name of the MatchmakingRuleSet resource.

.NET
Go
Java
Python
TypeScript