Amazon IoT Greengrass · JSON Structure

Iot Greengrass Create Component Version Response Structure

CreateComponentVersionResponse schema

Type: object Properties: 5 Required: 4
Edge ComputingIoTLambdaMachine LearningReal-Time Processing

CreateComponentVersionResponse is a JSON Structure definition published by Amazon IoT Greengrass, describing 5 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

arn componentName componentVersion creationTimestamp status

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-iot-greengrass/refs/heads/main/json-structure/iot-greengrass-create-component-version-response-structure.json",
  "name": "CreateComponentVersionResponse",
  "description": "CreateComponentVersionResponse schema",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentVersionARN"
        },
        {
          "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."
        }
      ]
    },
    "componentVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentVersionString"
        },
        {
          "description": "The version of the component."
        }
      ]
    },
    "creationTimestamp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time at which the component was created, expressed in ISO 8601 format."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CloudComponentStatus"
        },
        {
          "description": "The status of the component version in IoT Greengrass V2. This status is different from the status of the component on a core device."
        }
      ]
    }
  },
  "required": [
    "componentName",
    "componentVersion",
    "creationTimestamp",
    "status"
  ]
}