Class: Aws::GameLift::Types::CreateMatchmakingRuleSetInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::CreateMatchmakingRuleSetInput
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
A unique identifier for the matchmaking rule set.
-
#rule_set_body ⇒ String
A collection of matchmaking rules, formatted as a JSON string.
-
#tags ⇒ Array<Types::Tag>
A list of labels to assign to the new matchmaking rule set resource.
Instance Attribute Details
#name ⇒ String
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 name
field in the rule set body.
2882 2883 2884 2885 2886 2887 2888 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 2882 class CreateMatchmakingRuleSetInput < Struct.new( :name, :rule_set_body, :tags) SENSITIVE = [] include Aws::Structure end |
#rule_set_body ⇒ String
A collection of matchmaking rules, formatted as a JSON string. Comments are not allowed in JSON, but most elements support a description field.
2882 2883 2884 2885 2886 2887 2888 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 2882 class CreateMatchmakingRuleSetInput < Struct.new( :name, :rule_set_body, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of labels to assign to the new matchmaking rule set resource. Tags are developer-defined key-value pairs. Tagging Amazon Web Services resources are useful for resource management, access management and cost allocation. For more information, see Tagging Amazon Web Services Resources in the Amazon Web Services General Reference.
2882 2883 2884 2885 2886 2887 2888 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 2882 class CreateMatchmakingRuleSetInput < Struct.new( :name, :rule_set_body, :tags) SENSITIVE = [] include Aws::Structure end |