Class: Aws::GameLift::Types::AcceptMatchInput

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

Overview

Constant Summary collapse

SENSITIVE =
[:player_ids]

Instance Attribute Summary collapse

Instance Attribute Details

#acceptance_typeString

Player response to the proposed match.

Returns:

  • (String)


29
30
31
32
33
34
35
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 29

class AcceptMatchInput < Struct.new(
  :ticket_id,
  :player_ids,
  :acceptance_type)
  SENSITIVE = [:player_ids]
  include Aws::Structure
end

#player_idsArray<String>

A unique identifier for a player delivering the response. This parameter can include one or multiple player IDs.

Returns:

  • (Array<String>)


29
30
31
32
33
34
35
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 29

class AcceptMatchInput < Struct.new(
  :ticket_id,
  :player_ids,
  :acceptance_type)
  SENSITIVE = [:player_ids]
  include Aws::Structure
end

#ticket_idString

A unique identifier for a matchmaking ticket. The ticket must be in status REQUIRES_ACCEPTANCE; otherwise this request will fail.

Returns:

  • (String)


29
30
31
32
33
34
35
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 29

class AcceptMatchInput < Struct.new(
  :ticket_id,
  :player_ids,
  :acceptance_type)
  SENSITIVE = [:player_ids]
  include Aws::Structure
end