Interface MatchmakingRuleSetAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
MatchmakingRuleSetAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-17T05:10:19.873Z") @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();
 
  • Method Details

    • getMatchmakingRuleSetArn

      @Stability(Experimental) @Nullable default String getMatchmakingRuleSetArn()
      (experimental) The ARN of the matchmaking ruleSet.

      At least one of matchmakingRuleSetArn and matchmakingRuleSetName must be provided.

      Default: derived from `matchmakingRuleSetName`.

    • getMatchmakingRuleSetName

      @Stability(Experimental) @Nullable default String getMatchmakingRuleSetName()
      (experimental) The unique name of the matchmaking ruleSet.

      At least one of ruleSetName and matchmakingRuleSetArn must be provided.

      Default: derived from `matchmakingRuleSetArn`.

    • builder

      @Stability(Experimental) static MatchmakingRuleSetAttributes.Builder builder()
      Returns:
      a MatchmakingRuleSetAttributes.Builder of MatchmakingRuleSetAttributes