Show / Hide Table of Contents

Class CfnMatchmakingRuleSetMixinProps

Properties for CfnMatchmakingRuleSetPropsMixin.

Inheritance
object
CfnMatchmakingRuleSetMixinProps
Implements
ICfnMatchmakingRuleSetMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.GameLift
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnMatchmakingRuleSetMixinProps : ICfnMatchmakingRuleSetMixinProps
Syntax (vb)
Public Class CfnMatchmakingRuleSetMixinProps Implements ICfnMatchmakingRuleSetMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.GameLift;

             var cfnMatchmakingRuleSetMixinProps = new CfnMatchmakingRuleSetMixinProps {
                 Name = "name",
                 RuleSetBody = "ruleSetBody",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnMatchmakingRuleSetMixinProps()

Properties for CfnMatchmakingRuleSetPropsMixin.

Properties

Name

A unique identifier for the matchmaking rule set.

RuleSetBody

A collection of matchmaking rules, formatted as a JSON string.

Tags

A list of labels to assign to the new matchmaking rule set resource.

Constructors

CfnMatchmakingRuleSetMixinProps()

Properties for CfnMatchmakingRuleSetPropsMixin.

public CfnMatchmakingRuleSetMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.GameLift;

             var cfnMatchmakingRuleSetMixinProps = new CfnMatchmakingRuleSetMixinProps {
                 Name = "name",
                 RuleSetBody = "ruleSetBody",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Name

A unique identifier for the matchmaking rule set.

public string? Name { get; set; }
Property Value

string

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-name

RuleSetBody

A collection of matchmaking rules, formatted as a JSON string.

public string? RuleSetBody { get; set; }
Property Value

string

Remarks

Comments are not allowed in JSON, but most elements support a description field.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-rulesetbody

Tags

A list of labels to assign to the new matchmaking rule set resource.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-matchmakingruleset.html#cfn-gamelift-matchmakingruleset-tags

Implements

ICfnMatchmakingRuleSetMixinProps
Back to top Generated by DocFX