Amazon GameLift · JSON Structure

Gamelift Create Game Session Queue Input Structure

CreateGameSessionQueueInput schema from Amazon GameLift API

Type: object Properties: 9 Required: 1
Cloud ComputingGame ServersGamingMultiplayerMatchmakingFlexMatchFleetIQ

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

Properties

Name TimeoutInSeconds PlayerLatencyPolicies Destinations FilterConfiguration PriorityConfiguration CustomEventData NotificationTarget Tags

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-create-game-session-queue-input-structure.json",
  "name": "CreateGameSessionQueueInput",
  "description": "CreateGameSessionQueueInput schema from Amazon GameLift API",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GameSessionQueueName"
        },
        {
          "description": "A descriptive label that is associated with game session queue. Queue names must be unique within each Region."
        }
      ]
    },
    "TimeoutInSeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WholeNumber"
        },
        {
          "description": "The maximum time, in seconds, that a new game session placement request remains in the queue. When a request exceeds this time, the game session placement changes to a <code>TIMED_OUT</code> status."
        }
      ]
    },
    "PlayerLatencyPolicies": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PlayerLatencyPolicyList"
        },
        {
          "description": "A set of policies that act as a sliding cap on player latency. FleetIQ works to deliver low latency for most players in a game session. These policies ensure that no individual player can be placed into a game with unreasonably high latency. Use multiple policies to gradually relax latency requirements a step at a time. Multiple policies are applied based on their maximum allowed latency, starting with the lowest value."
        }
      ]
    },
    "Destinations": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GameSessionQueueDestinationList"
        },
        {
          "description": "A list of fleets and/or fleet aliases that can be used to fulfill game session placement requests in the queue. Destinations are identified by either a fleet ARN or a fleet alias ARN, and are listed in order of placement preference."
        }
      ]
    },
    "FilterConfiguration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FilterConfiguration"
        },
        {
          "description": "A list of locations where a queue is allowed to place new game sessions. Locations are specified in the form of Amazon Web Services Region codes, such as <code>us-west-2</code>. If this parameter is not set, game sessions can be placed in any queue location. "
        }
      ]
    },
    "PriorityConfiguration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PriorityConfiguration"
        },
        {
          "description": "Custom settings to use when prioritizing destinations and locations for game session placements. This configuration replaces the FleetIQ default prioritization process. Priority types that are not explicitly named will be automatically applied at the end of the prioritization process. "
        }
      ]
    },
    "CustomEventData": {
      "allOf": [
        {
          "$ref": "#/components/schemas/QueueCustomEventData"
        },
        {
          "description": "Information to be added to all events that are related to this game session queue."
        }
      ]
    },
    "NotificationTarget": {
      "allOf": [
        {
          "$ref": "#/components/schemas/QueueSnsArnStringModel"
        },
        {
          "description": "An SNS topic ARN that is set up to receive game session placement notifications. See <a href=\"https://docs.aws.amazon.com/gamelift/latest/developerguide/queue-notification.html\"> Setting up notifications for game session placement</a>."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "A list of labels to assign to the new game session queue resource. Tags are developer-defined key-value pairs. Tagging Amazon Web Services resources are useful for resource management, access management and cost allocation. For more information, see <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html\"> Tagging Amazon Web Services Resources</a> in the <i>Amazon Web Services General Reference</i>."
        }
      ]
    }
  },
  "required": [
    "Name"
  ]
}