Amazon RoboMaker · JSON Structure

Amazon Robomaker Openapi Network Interface Structure

Describes a network interface.

Type: object Properties: 3
RoboticsSimulation

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

Properties

networkInterfaceId privateIpAddress publicIpAddress

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-network-interface-structure.json",
  "description": "Describes a network interface.",
  "type": "object",
  "properties": {
    "networkInterfaceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "The ID of the network interface."
        }
      ]
    },
    "privateIpAddress": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "The IPv4 address of the network interface within the subnet."
        }
      ]
    },
    "publicIpAddress": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "The IPv4 public address of the network interface."
        }
      ]
    }
  },
  "name": "NetworkInterface"
}