@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-03-22T19:35:36.302Z") public class CfnMatchmakingRuleSet extends CfnResource implements IInspectable
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();
Modifier and Type | Class and Description |
---|---|
static class |
CfnMatchmakingRuleSet.Builder
A fluent builder for
CfnMatchmakingRuleSet . |
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
IConstruct.Jsii$Default
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
Modifier | Constructor and Description |
---|---|
|
CfnMatchmakingRuleSet(Construct scope,
java.lang.String id,
CfnMatchmakingRuleSetProps props)
Create a new `AWS::GameLift::MatchmakingRuleSet`.
|
protected |
CfnMatchmakingRuleSet(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnMatchmakingRuleSet(software.amazon.jsii.JsiiObjectRef objRef) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAttrArn()
The unique Amazon Resource Name (ARN) assigned to the rule set.
|
java.lang.String |
getAttrName()
The unique name of the rule set.
|
protected java.util.Map<java.lang.String,java.lang.Object> |
getCfnProperties() |
java.lang.String |
getName()
A unique identifier for the matchmaking rule set.
|
java.lang.String |
getRuleSetBody()
A collection of matchmaking rules, formatted as a JSON string.
|
TagManager |
getTags()
A list of labels to assign to the new matchmaking rule set resource.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected java.util.Map<java.lang.String,java.lang.Object> |
renderProperties(java.util.Map<java.lang.String,java.lang.Object> props) |
void |
setName(java.lang.String value)
A unique identifier for the matchmaking rule set.
|
void |
setRuleSetBody(java.lang.String value)
A collection of matchmaking rules, formatted as a JSON string.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validateProperties
getRef
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
public static final java.lang.String CFN_RESOURCE_TYPE_NAME
protected CfnMatchmakingRuleSet(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnMatchmakingRuleSet(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
public CfnMatchmakingRuleSet(Construct scope, java.lang.String id, CfnMatchmakingRuleSetProps props)
scope
- - scope in which this resource is defined. This parameter is required.id
- - scoped id of the resource. This parameter is required.props
- - resource properties. This parameter is required.public void inspect(TreeInspector inspector)
inspect
in interface IInspectable
inspector
- - tree inspector to collect and process attributes. This parameter is required.protected java.util.Map<java.lang.String,java.lang.Object> renderProperties(java.util.Map<java.lang.String,java.lang.Object> props)
renderProperties
in class CfnResource
props
- This parameter is required.public java.lang.String getAttrArn()
public java.lang.String getAttrName()
protected java.util.Map<java.lang.String,java.lang.Object> getCfnProperties()
getCfnProperties
in class CfnResource
public TagManager getTags()
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.
public java.lang.String getName()
A matchmaking configuration identifies the rule set it uses by this name value. Note that the rule set name is different from the optional name
field in the rule set body.
public void setName(java.lang.String value)
A matchmaking configuration identifies the rule set it uses by this name value. Note that the rule set name is different from the optional name
field in the rule set body.
public java.lang.String getRuleSetBody()
Comments are not allowed in JSON, but most elements support a description field.
public void setRuleSetBody(java.lang.String value)
Comments are not allowed in JSON, but most elements support a description field.