Amazon SimSpace Weaver · JSON Structure

Amazon Simspace Weaver Simulation App Port Mapping Structure

A collection of TCP/UDP ports for a custom or service app.

Type: object Properties: 2
DefenseDigital TwinSimulationSpatial Simulation

SimulationAppPortMapping is a JSON Structure definition published by Amazon SimSpace Weaver, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Actual Declared

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-simspace-weaver/refs/heads/main/json-structure/amazon-simspace-weaver-simulation-app-port-mapping-structure.json",
  "name": "SimulationAppPortMapping",
  "description": "A collection of TCP/UDP ports for a custom or service app.",
  "properties": {
    "Actual": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PortNumber"
        },
        {
          "description": "The TCP/UDP port number of the running app. SimSpace Weaver dynamically assigns this port number when the app starts. SimSpace Weaver maps the <code>Declared</code> port to the <code>Actual</code> port. Clients connect to the app using the app's IP address and the <code>Actual</code> port number."
        }
      ]
    },
    "Declared": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PortNumber"
        },
        {
          "description": "The TCP/UDP port number of the app, declared in the simulation schema. SimSpace Weaver maps the <code>Declared</code> port to the <code>Actual</code> port. The source code for the app should bind to the <code>Declared</code> port."
        }
      ]
    }
  }
}