Class CfnMatchmakingRuleSet
- All Implemented Interfaces:
IConstruct,IDependable,IInspectable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct
AWS::GameLift::MatchmakingRuleSet.
Creates a new rule set for FlexMatch matchmaking. A rule set describes the type of match to create, such as the number and size of teams. It also sets the parameters for acceptable player matches, such as minimum skill level or character type.
To create a matchmaking rule set, provide unique rule set name and the rule set body in JSON format. Rule sets must be defined in the same Region as the matchmaking configuration they are used with.
Since matchmaking rule sets cannot be edited, it is a good idea to check the rule set syntax.
Learn more
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.*;
CfnMatchmakingRuleSet cfnMatchmakingRuleSet = CfnMatchmakingRuleSet.Builder.create(this, "MyCfnMatchmakingRuleSet")
.name("name")
.ruleSetBody("ruleSetBody")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionCfnMatchmakingRuleSet(Construct scope, String id, CfnMatchmakingRuleSetProps props) Create a newAWS::GameLift::MatchmakingRuleSet.protectedCfnMatchmakingRuleSet(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnMatchmakingRuleSet(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionThe unique Amazon Resource Name (ARN) assigned to the rule set.The unique name of the rule set.getName()A unique identifier for the matchmaking rule set.A collection of matchmaking rules, formatted as a JSON string.getTags()A list of labels to assign to the new matchmaking rule set resource.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidA unique identifier for the matchmaking rule set.voidsetRuleSetBody(String value) A collection of matchmaking rules, formatted as a JSON string.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.core.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnMatchmakingRuleSet
protected CfnMatchmakingRuleSet(software.amazon.jsii.JsiiObjectRef objRef) -
CfnMatchmakingRuleSet
protected CfnMatchmakingRuleSet(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnMatchmakingRuleSet
@Stability(Stable) public CfnMatchmakingRuleSet(@NotNull Construct scope, @NotNull String id, @NotNull CfnMatchmakingRuleSetProps props) Create a newAWS::GameLift::MatchmakingRuleSet.- Parameters:
scope-- scope in which this resource is defined.
id-- scoped id of the resource.
props-- resource properties.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrArn
The unique Amazon Resource Name (ARN) assigned to the rule set. -
getAttrName
The unique name of the rule set. -
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getTags
A list of labels to assign to the new matchmaking rule set resource.Tags are developer-defined key-value pairs. Tagging AWS resources are useful for resource management, access management and cost allocation. For more information, see Tagging AWS Resources in the AWS General Reference . Once the resource is created, you can use TagResource, UntagResource, and ListTagsForResource to add, remove, and view tags. The maximum tag limit may be lower than stated. See the AWS General Reference for actual tagging limits.
-
getName
A unique identifier for the matchmaking rule set.A matchmaking configuration identifies the rule set it uses by this name value. Note that the rule set name is different from the optional
namefield in the rule set body. -
setName
A unique identifier for the matchmaking rule set.A matchmaking configuration identifies the rule set it uses by this name value. Note that the rule set name is different from the optional
namefield in the rule set body. -
getRuleSetBody
A collection of matchmaking rules, formatted as a JSON string.Comments are not allowed in JSON, but most elements support a description field.
-
setRuleSetBody
A collection of matchmaking rules, formatted as a JSON string.Comments are not allowed in JSON, but most elements support a description field.
-