Amazon Panorama · Schema

PackageImportJobOutput

Results of a package import job.

CamerasComputer VisionEdge MLIndustrial IoT

Properties

Name Type Description
OutputS3Location object
PackageId object
PackageVersion object
PatchVersion object
View JSON Schema on GitHub

JSON Schema

openapi-package-import-job-output-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-package-import-job-output-schema.json",
  "title": "PackageImportJobOutput",
  "description": "Results of a package import job.",
  "type": "object",
  "properties": {
    "OutputS3Location": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OutPutS3Location"
        },
        {
          "description": "The package's output location."
        }
      ]
    },
    "PackageId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodePackageId"
        },
        {
          "description": "The package's ID."
        }
      ]
    },
    "PackageVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodePackageVersion"
        },
        {
          "description": "The package's version."
        }
      ]
    },
    "PatchVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodePackagePatchVersion"
        },
        {
          "description": "The package's patch version."
        }
      ]
    }
  },
  "required": [
    "OutputS3Location",
    "PackageId",
    "PackageVersion",
    "PatchVersion"
  ]
}