Amazon GameLift · Schema

LocationConfiguration

A remote location where a multi-location fleet can deploy game servers for game hosting.

Cloud ComputingGame ServersGamingMultiplayerMatchmakingFlexMatchFleetIQ

Properties

Name Type Description
Location object
View JSON Schema on GitHub

JSON Schema

gamelift-location-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-gamelift/refs/heads/main/json-schema/gamelift-location-configuration-schema.json",
  "title": "LocationConfiguration",
  "description": "A remote location where a multi-location fleet can deploy game servers for game hosting. ",
  "type": "object",
  "properties": {
    "Location": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LocationStringModel"
        },
        {
          "description": "An Amazon Web Services Region code, such as <code>us-west-2</code>. "
        }
      ]
    }
  },
  "required": [
    "Location"
  ]
}