Amazon GameLift · Schema

ListGameServerGroupsInput

ListGameServerGroupsInput schema from Amazon GameLift API

Cloud ComputingGame ServersGamingMultiplayerMatchmakingFlexMatchFleetIQ

Properties

Name Type Description
Limit object
NextToken object
View JSON Schema on GitHub

JSON Schema

gamelift-list-game-server-groups-input-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-list-game-server-groups-input-schema.json",
  "title": "ListGameServerGroupsInput",
  "description": "ListGameServerGroupsInput schema from Amazon GameLift API",
  "type": "object",
  "properties": {
    "Limit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PositiveInteger"
        },
        {
          "description": "The game server groups' limit."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonZeroAndMaxString"
        },
        {
          "description": "Specify the pagination token from a previous request to retrieve the next page of results."
        }
      ]
    }
  }
}