Amazon RoboMaker · Schema

PortMapping

An object representing a port mapping.

RoboticsSimulation

Properties

Name Type Description
jobPort object
applicationPort object
enableOnPublicIp object
View JSON Schema on GitHub

JSON Schema

amazon-robomaker-openapi-port-mapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-robomaker/refs/heads/main/json-schema/amazon-robomaker-openapi-port-mapping-schema.json",
  "title": "PortMapping",
  "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"
  ]
}