Amazon GameLift · JSON Structure

Gamelift Update Fleet Port Settings Input Structure

UpdateFleetPortSettingsInput schema from Amazon GameLift API

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

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

Properties

FleetId InboundPermissionAuthorizations InboundPermissionRevocations

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-update-fleet-port-settings-input-structure.json",
  "name": "UpdateFleetPortSettingsInput",
  "description": "UpdateFleetPortSettingsInput schema from Amazon GameLift API",
  "type": "object",
  "properties": {
    "FleetId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FleetIdOrArn"
        },
        {
          "description": "A unique identifier for the fleet to update port settings for. You can use either the fleet ID or ARN value."
        }
      ]
    },
    "InboundPermissionAuthorizations": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IpPermissionsList"
        },
        {
          "description": "A collection of port settings to be added to the fleet resource."
        }
      ]
    },
    "InboundPermissionRevocations": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IpPermissionsList"
        },
        {
          "description": "A collection of port settings to be removed from the fleet resource."
        }
      ]
    }
  },
  "required": [
    "FleetId"
  ]
}