@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.494Z") @Stability(value=Stable) public interface CfnMatchmakingRuleSetProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnMatchmakingRuleSetProps cfnMatchmakingRuleSetProps = CfnMatchmakingRuleSetProps.builder()
.name("name")
.ruleSetBody("ruleSetBody")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMatchmakingRuleSetProps.Builder
A builder for
CfnMatchmakingRuleSetProps |
static class |
CfnMatchmakingRuleSetProps.Jsii$Proxy
An implementation for
CfnMatchmakingRuleSetProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnMatchmakingRuleSetProps.Builder |
builder() |
String |
getName()
A unique identifier for the matchmaking rule set.
|
String |
getRuleSetBody()
A collection of matchmaking rules, formatted as a JSON string.
|
default List<CfnTag> |
getTags()
A list of labels to assign to the new matchmaking rule set resource.
|
@Stability(value=Stable) @NotNull 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) @NotNull String getRuleSetBody()
Comments are not allowed in JSON, but most elements support a description field.
@Stability(value=Stable) @Nullable default List<CfnTag> 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.
@Stability(value=Stable) static CfnMatchmakingRuleSetProps.Builder builder()
CfnMatchmakingRuleSetProps.Builder of CfnMatchmakingRuleSetPropsCopyright © 2022. All rights reserved.