interface MatchmakingRuleSetAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GameLift.Alpha.MatchmakingRuleSetAttributes |
Go | github.com/aws/aws-cdk-go/awscdkgameliftalpha/v2#MatchmakingRuleSetAttributes |
Java | software.amazon.awscdk.services.gamelift.alpha.MatchmakingRuleSetAttributes |
Python | aws_cdk.aws_gamelift_alpha.MatchmakingRuleSetAttributes |
TypeScript (source) | @aws-cdk/aws-gamelift-alpha » MatchmakingRuleSetAttributes |
A full specification of a matchmaking ruleSet that can be used to import it fluently into the CDK application.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as gamelift_alpha from '@aws-cdk/aws-gamelift-alpha';
const matchmakingRuleSetAttributes: gamelift_alpha.MatchmakingRuleSetAttributes = {
matchmakingRuleSetArn: 'matchmakingRuleSetArn',
matchmakingRuleSetName: 'matchmakingRuleSetName',
};
Properties
| Name | Type | Description |
|---|---|---|
| matchmaking | string | The ARN of the matchmaking ruleSet. |
| matchmaking | string | The unique name of the matchmaking ruleSet. |
matchmakingRuleSetArn?
Type:
string
(optional, default: derived from matchmakingRuleSetName.)
The ARN of the matchmaking ruleSet.
At least one of matchmakingRuleSetArn and matchmakingRuleSetName must be provided.
matchmakingRuleSetName?
Type:
string
(optional, default: derived from matchmakingRuleSetArn.)
The unique name of the matchmaking ruleSet.
At least one of ruleSetName and matchmakingRuleSetArn must be provided.

.NET
Go
Java
Python
TypeScript (