Interface MatchmakingRuleSetAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MatchmakingRuleSetAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:07.840Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forMatchmakingRuleSetAttributes
static final class
An 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
matchmakingRuleSetArn
andmatchmakingRuleSetName
must be provided.Default: derived from `matchmakingRuleSetName`.
-
getMatchmakingRuleSetName
(experimental) The unique name of the matchmaking ruleSet.At least one of
ruleSetName
andmatchmakingRuleSetArn
must be provided.Default: derived from `matchmakingRuleSetArn`.
-
builder
-