Amazon GameLift · JSON Structure

Gamelift Instance Access Structure

Information required to remotely connect to a fleet instance.

Type: object Properties: 5
Cloud ComputingGame ServersGamingMultiplayerMatchmakingFlexMatchFleetIQ

InstanceAccess is a JSON Structure definition published by Amazon GameLift, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

FleetId InstanceId IpAddress OperatingSystem Credentials

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-instance-access-structure.json",
  "name": "InstanceAccess",
  "description": "Information required to remotely connect to a fleet instance. ",
  "type": "object",
  "properties": {
    "FleetId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FleetId"
        },
        {
          "description": "A unique identifier for the fleet containing the instance being accessed."
        }
      ]
    },
    "InstanceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceId"
        },
        {
          "description": "A unique identifier for the instance being accessed."
        }
      ]
    },
    "IpAddress": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IpAddress"
        },
        {
          "description": "IP address that is assigned to the instance."
        }
      ]
    },
    "OperatingSystem": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OperatingSystem"
        },
        {
          "description": "Operating system that is running on the instance."
        }
      ]
    },
    "Credentials": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceCredentials"
        },
        {
          "description": "Credentials required to access the instance."
        }
      ]
    }
  }
}