Struct rusoto_gamelift::MatchmakingTicket [] [src]

pub struct MatchmakingTicket {
    pub configuration_name: Option<String>,
    pub game_session_connection_info: Option<GameSessionConnectionInfo>,
    pub players: Option<Vec<Player>>,
    pub start_time: Option<f64>,
    pub status: Option<String>,
    pub status_message: Option<String>,
    pub status_reason: Option<String>,
    pub ticket_id: Option<String>,
}

Ticket generated to track the progress of a matchmaking request. Each ticket is uniquely identified by a ticket ID, supplied by the requester, when creating a matchmaking request with StartMatchmaking. Tickets can be retrieved by calling DescribeMatchmaking with the ticket ID.

Fields

Name of the MatchmakingConfiguration that is used with this ticket. Matchmaking configurations determine how players are grouped into a match and how a new game session is created for the match.

Identifier and connection information of the game session created for the match. This information is added to the ticket only after the matchmaking request has been successfully completed.

A set of Player objects, each representing a player to find matches for. Players are identified by a unique player ID and may include latency data for use during matchmaking. If the ticket is in status COMPLETED, the Player objects include the team the players were assigned to in the resulting match.

Time stamp indicating when this matchmaking request was received. Format is a number expressed in Unix time as milliseconds (for example "1469498468.057").

Current status of the matchmaking request.

  • QUEUED – The matchmaking request has been received and is currently waiting to be processed.

  • SEARCHING – The matchmaking request is currently being processed.

  • REQUIRES_ACCEPTANCE – A match has been proposed and the players must accept the match (see AcceptMatch). This status is used only with requests that use a matchmaking configuration with a player acceptance requirement.

  • PLACING – The FlexMatch engine has matched players and is in the process of placing a new game session for the match.

  • COMPLETED – Players have been matched and a game session is ready to host the players. A ticket in this state contains the necessary connection information for players.

  • FAILED – The matchmaking request was not completed. Tickets with players who fail to accept a proposed match are placed in FAILED status; new matchmaking requests can be submitted for these players.

  • CANCELLED – The matchmaking request was canceled with a call to StopMatchmaking.

  • TIMED_OUT – The matchmaking request was not completed within the duration specified in the matchmaking configuration. Matchmaking requests that time out can be resubmitted.

Additional information about the current status.

Code to explain the current status. For example, a status reason may indicate when a ticket has returned to SEARCHING status after a proposed match fails to receive player acceptances.

Unique identifier for a matchmaking ticket.

Trait Implementations

impl Default for MatchmakingTicket
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for MatchmakingTicket
[src]

[src]

Formats the value using the given formatter.

impl Clone for MatchmakingTicket
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more