Amazon Lookout for Vision · JSON Structure

Amazon Lookout For Vision Greengrass Configuration Structure

Configuration information for the AWS IoT Greengrass component created in a model packaging job. For more information, see StartModelPackagingJob.

You can't specify a component with the same ComponentName and Componentversion as an existing component with the same component name and component version.

Type: object Properties: 8 Required: 2
Computer VisionMachine LearningManufacturingQuality InspectionAnomaly Detection

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

Properties

CompilerOptions TargetDevice TargetPlatform S3OutputLocation ComponentName ComponentVersion ComponentDescription Tags

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-lookout-for-vision/refs/heads/main/json-structure/amazon-lookout-for-vision-greengrass-configuration-structure.json",
  "name": "GreengrassConfiguration",
  "description": "<p>Configuration information for the AWS IoT Greengrass component created in a model packaging job. For more information, see <a>StartModelPackagingJob</a>. </p> <note> <p>You can't specify a component with the same <code>ComponentName</code> and <code>Componentversion</code> as an existing component with the same component name and component version.</p> </note>",
  "type": "object",
  "properties": {
    "CompilerOptions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CompilerOptions"
        },
        {
          "description": "<p>Additional compiler options for the Greengrass component. Currently, only NVIDIA Graphics Processing Units (GPU) and CPU accelerators are supported. If you specify <code>TargetDevice</code>, don't specify <code>CompilerOptions</code>.</p> <p>For more information, see <i>Compiler options</i> in the Amazon Lookout for Vision Developer Guide. </p>"
        }
      ]
    },
    "TargetDevice": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TargetDevice"
        },
        {
          "description": "The target device for the model. Currently the only supported value is <code>jetson_xavier</code>. If you specify <code>TargetDevice</code>, you can't specify <code>TargetPlatform</code>. "
        }
      ]
    },
    "TargetPlatform": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TargetPlatform"
        },
        {
          "description": "The target platform for the model. If you specify <code>TargetPlatform</code>, you can't specify <code>TargetDevice</code>. "
        }
      ]
    },
    "S3OutputLocation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Location"
        },
        {
          "description": " An S3 location in which Lookout for Vision stores the component artifacts. "
        }
      ]
    },
    "ComponentName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentName"
        },
        {
          "description": " A name for the AWS IoT Greengrass component. "
        }
      ]
    },
    "ComponentVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentVersion"
        },
        {
          "description": "A Version for the AWS IoT Greengrass component. If you don't provide a value, a default value of <code> <i>Model Version</i>.0.0</code> is used. "
        }
      ]
    },
    "ComponentDescription": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentDescription"
        },
        {
          "description": " A description for the AWS IoT Greengrass component. "
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": " A set of tags (key-value pairs) that you want to attach to the AWS IoT Greengrass component. "
        }
      ]
    }
  },
  "required": [
    "S3OutputLocation",
    "ComponentName"
  ]
}