Amazon GameLift · JSON Structure

Gamelift Describe Game Server Input Structure

DescribeGameServerInput schema from Amazon GameLift API

Type: object Properties: 2 Required: 2
Cloud ComputingGame ServersGamingMultiplayerMatchmakingFlexMatchFleetIQ

DescribeGameServerInput is a JSON Structure definition published by Amazon GameLift, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

GameServerGroupName GameServerId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-gamelift/refs/heads/main/json-structure/gamelift-describe-game-server-input-structure.json",
  "name": "DescribeGameServerInput",
  "description": "DescribeGameServerInput schema from Amazon GameLift API",
  "type": "object",
  "properties": {
    "GameServerGroupName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GameServerGroupNameOrArn"
        },
        {
          "description": "A unique identifier for the game server group where the game server is running."
        }
      ]
    },
    "GameServerId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GameServerId"
        },
        {
          "description": "A custom string that uniquely identifies the game server information to be retrieved."
        }
      ]
    }
  },
  "required": [
    "GameServerGroupName",
    "GameServerId"
  ]
}