

本文為英文版的機器翻譯版本，如內容有任何歧義或不一致之處，概以英文版為準。

# MatchmakingSearching
<a name="match-events-matchmakingsearching"></a>

已輸入配對的票證。包括新請求和屬於已失敗建議配對的請求。

**資源：**ConfigurationArn

**詳細資訊：**type、tickets、estimatedWaitMillis、gameSessionInfo

**注意**  
該`estimatedWaitMillis`值會以*秒*為單位報告，而不是毫秒。可用時，該值是代表秒的整數，否則是字串 `"NOT_AVAILABLE"`。此值符合 [DescribeMatchmaking](https://docs.aws.amazon.com/gamelift/latest/apireference/API_DescribeMatchmaking.html) API 傳回`EstimatedWaitTime`的欄位，也是以秒為單位。如果您的應用程式已將此值解譯為秒，則不需要變更。

## 範例
<a name="match-events-matchmakingsearching-example"></a>

```
{
  "version": "0",
  "id": "cc3d3ebe-1d90-48f8-b268-c96655b8f013",
  "detail-type": "GameLift Matchmaking Event",
  "source": "aws.gamelift",
  "account": "123456789012",
  "time": "2017-08-08T21:15:36.421Z",
  "region": "us-west-2",
  "resources": [
    "arn:aws:gamelift:us-west-2:123456789012:matchmakingconfiguration/SampleConfiguration"
  ],
  "detail": {
    "tickets": [
      {
        "ticketId": "ticket-1",
        "startTime": "2017-08-08T21:15:35.676Z",
        "players": [
          {
            "playerId": "player-1"
          }
        ]
      }
    ],
    "estimatedWaitMillis": "NOT_AVAILABLE",
    "type": "MatchmakingSearching",
    "gameSessionInfo": {
      "players": [
        {
          "playerId": "player-1"
        }
      ]
    }
  }
}
```