Interface MatchmakingRuleSetAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MatchmakingRuleSetAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:49.829Z")
@Stability(Experimental)
public interface MatchmakingRuleSetAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.services.gamelift.alpha.*;
MatchmakingRuleSetAttributes matchmakingRuleSetAttributes = MatchmakingRuleSetAttributes.builder()
.matchmakingRuleSetArn("matchmakingRuleSetArn")
.matchmakingRuleSetName("matchmakingRuleSetName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMatchmakingRuleSetAttributesstatic final classAn implementation forMatchmakingRuleSetAttributes -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMatchmakingRuleSetArn
(experimental) The ARN of the matchmaking ruleSet.At least one of
matchmakingRuleSetArnandmatchmakingRuleSetNamemust be provided.Default: derived from `matchmakingRuleSetName`.
-
getMatchmakingRuleSetName
(experimental) The unique name of the matchmaking ruleSet.At least one of
ruleSetNameandmatchmakingRuleSetArnmust be provided.Default: derived from `matchmakingRuleSetArn`.
-
builder
-