Amazon IoT Greengrass · JSON Structure

Iot Greengrass Get Component Response Structure

GetComponentResponse schema

Type: object Properties: 3 Required: 2
Edge ComputingIoTLambdaMachine LearningReal-Time Processing

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

Properties

recipeOutputFormat recipe 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-iot-greengrass/refs/heads/main/json-structure/iot-greengrass-get-component-response-structure.json",
  "name": "GetComponentResponse",
  "description": "GetComponentResponse schema",
  "type": "object",
  "properties": {
    "recipeOutputFormat": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecipeOutputFormat"
        },
        {
          "description": "The format of the recipe."
        }
      ]
    },
    "recipe": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecipeBlob"
        },
        {
          "description": "The recipe of the component version."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "A list of key-value pairs that contain metadata for the resource. For more information, see <a href=\"https://docs.aws.amazon.com/greengrass/v2/developerguide/tag-resources.html\">Tag your resources</a> in the <i>IoT Greengrass V2 Developer Guide</i>."
        }
      ]
    }
  },
  "required": [
    "recipeOutputFormat",
    "recipe"
  ]
}