

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

# 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"
        }
      ]
    }
  }
}
```