Component

Contains information about a component.

Edge ComputingIoTLambdaMachine LearningReal-Time Processing

Properties

Name Type Description
arn object
componentName object
latestVersion object
View JSON Schema on GitHub

JSON Schema

iot-greengrass-component-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-greengrass/refs/heads/main/json-schema/iot-greengrass-component-schema.json",
  "title": "Component",
  "description": "Contains information about a component.",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentARN"
        },
        {
          "description": "The <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html\">ARN</a> of the component version."
        }
      ]
    },
    "componentName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentNameString"
        },
        {
          "description": "The name of the component."
        }
      ]
    },
    "latestVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentLatestVersion"
        },
        {
          "description": "The latest version of the component and its details."
        }
      ]
    }
  }
}