Amazon GameLift · Schema

UpdateFleetPortSettingsInput

UpdateFleetPortSettingsInput schema from Amazon GameLift API

Cloud ComputingGame ServersGamingMultiplayerMatchmakingFlexMatchFleetIQ

Properties

Name Type Description
FleetId object
InboundPermissionAuthorizations object
InboundPermissionRevocations object
View JSON Schema on GitHub

JSON Schema

gamelift-update-fleet-port-settings-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-update-fleet-port-settings-input-schema.json",
  "title": "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"
  ]
}