You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::GameLift::Types::AcceptMatchInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::AcceptMatchInput
- Defined in:
- (unknown)
Overview
Note:
When passing AcceptMatchInput as input to an Aws::Client method, you can use a vanilla Hash:
{
ticket_id: "MatchmakingIdStringModel", # required
player_ids: ["NonZeroAndMaxString"], # required
acceptance_type: "ACCEPT", # required, accepts ACCEPT, REJECT
}
Represents the input for a request operation.
Instance Attribute Summary collapse
-
#acceptance_type ⇒ String
Player response to the proposed match.
-
#player_ids ⇒ Array<String>
A unique identifier for a player delivering the response.
-
#ticket_id ⇒ String
A unique identifier for a matchmaking ticket.
Instance Attribute Details
#acceptance_type ⇒ String
Player response to the proposed match.
Possible values:
- ACCEPT
- REJECT
#player_ids ⇒ Array<String>
A unique identifier for a player delivering the response. This parameter can include one or multiple player IDs.
#ticket_id ⇒ String
A unique identifier for a matchmaking ticket. The ticket must be in
status REQUIRES_ACCEPTANCE
; otherwise this request will fail.