@aws-cdk_aws-gamelift-alpha.MatchmakingRuleSetAttributes

interface MatchmakingRuleSetAttributes ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.GameLift.Alpha.MatchmakingRuleSetAttributes
Gogithub.com/aws/aws-cdk-go/awscdkgameliftalpha/v2#MatchmakingRuleSetAttributes
Javasoftware.amazon.awscdk.services.gamelift.alpha.MatchmakingRuleSetAttributes
Pythonaws_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

NameTypeDescription
matchmakingRuleSetArn?๐Ÿ”นstringThe ARN of the matchmaking ruleSet.
matchmakingRuleSetName?๐Ÿ”นstringThe 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.