Amazon RoboMaker · JSON Structure

Amazon Robomaker Openapi Port Mapping Structure

An object representing a port mapping.

Type: object Properties: 3 Required: 2
RoboticsSimulation

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

Properties

jobPort applicationPort enableOnPublicIp

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-robomaker/refs/heads/main/json-structure/amazon-robomaker-openapi-port-mapping-structure.json",
  "description": "An object representing a port mapping.",
  "type": "object",
  "properties": {
    "jobPort": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Port"
        },
        {
          "description": "The port number on the simulation job instance to use as a remote connection point. "
        }
      ]
    },
    "applicationPort": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonSystemPort"
        },
        {
          "description": "The port number on the application."
        }
      ]
    },
    "enableOnPublicIp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "A Boolean indicating whether to enable this port mapping on public IP."
        }
      ]
    }
  },
  "required": [
    "jobPort",
    "applicationPort"
  ],
  "name": "PortMapping"
}