ComponentVersionListItem

Contains information about a component version in a list.

Edge ComputingIoTLambdaMachine LearningReal-Time Processing

Properties

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

JSON Schema

iot-greengrass-component-version-list-item-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-version-list-item-schema.json",
  "title": "ComponentVersionListItem",
  "description": "Contains information about a component version in a list.",
  "type": "object",
  "properties": {
    "componentName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentNameString"
        },
        {
          "description": "The name of the component."
        }
      ]
    },
    "componentVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentVersionString"
        },
        {
          "description": "The version of the component."
        }
      ]
    },
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html\">ARN</a> of the component version."
        }
      ]
    }
  }
}