Class: Aws::GameLift::Types::CreateMatchmakingRuleSetInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-gamelift/types.rb

Overview

Note:

When making an API call, you may pass CreateMatchmakingRuleSetInput data as a hash:

{
  name: "MatchmakingIdStringModel", # required
  rule_set_body: "RuleSetBody", # required
}

Represents the input for a request action.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

Unique identifier for a matchmaking rule set. This name is used to identify the rule set associated with a matchmaking configuration.

Returns:

  • (String)


982
983
984
985
986
# File 'lib/aws-sdk-gamelift/types.rb', line 982

class CreateMatchmakingRuleSetInput < Struct.new(
  :name,
  :rule_set_body)
  include Aws::Structure
end

#rule_set_bodyString

Collection of matchmaking rules, formatted as a JSON string. (Note that comments are not allowed in JSON, but most elements support a description field.)

Returns:

  • (String)


982
983
984
985
986
# File 'lib/aws-sdk-gamelift/types.rb', line 982

class CreateMatchmakingRuleSetInput < Struct.new(
  :name,
  :rule_set_body)
  include Aws::Structure
end