@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:09.366Z") @Stability(value=Stable) public class CfnMatchmakingRuleSet extends CfnResource implements IInspectable
The AWS::GameLift::MatchmakingRuleSet resource 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. A rule set is used by a matchmaking configuration.
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")
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnMatchmakingRuleSet.Builder
A fluent builder for
CfnMatchmakingRuleSet. |
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$ProxyIConstruct.Jsii$Default| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnMatchmakingRuleSet(Construct scope,
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 |
|---|---|
String |
getAttrArn()
The unique Amazon Resource Name (ARN) assigned to the rule set.
|
String |
getAttrName()
The unique name of the rule set.
|
protected Map<String,Object> |
getCfnProperties() |
String |
getName()
A unique identifier for the matchmaking rule set.
|
String |
getRuleSetBody()
A collection of matchmaking rules, formatted as a JSON string.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setName(String value)
A unique identifier for the matchmaking rule set.
|
void |
setRuleSetBody(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, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdgetNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validatejsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnMatchmakingRuleSet(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnMatchmakingRuleSet(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnMatchmakingRuleSet(@NotNull
Construct scope,
@NotNull
String id,
@NotNull
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.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrArn()
@Stability(value=Stable) @NotNull public String getAttrName()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public 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.
@Stability(value=Stable)
public void setName(@NotNull
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.
@Stability(value=Stable) @NotNull public String getRuleSetBody()
Comments are not allowed in JSON, but most elements support a description field.
@Stability(value=Stable)
public void setRuleSetBody(@NotNull
String value)
Comments are not allowed in JSON, but most elements support a description field.
Copyright © 2022. All rights reserved.