Amazon IoT Greengrass · JSON Structure

Iot Greengrass Create Component Version Request Structure

CreateComponentVersionRequest schema

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

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

Properties

inlineRecipe lambdaFunction tags clientToken

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-request-structure.json",
  "name": "CreateComponentVersionRequest",
  "description": "CreateComponentVersionRequest schema",
  "type": "object",
  "properties": {
    "inlineRecipe": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecipeBlob"
        },
        {
          "description": "<p>The recipe to use to create the component. The recipe defines the component's metadata, parameters, dependencies, lifecycle, artifacts, and platform compatibility.</p> <p>You must specify either <code>inlineRecipe</code> or <code>lambdaFunction</code>.</p>"
        }
      ]
    },
    "lambdaFunction": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LambdaFunctionRecipeSource"
        },
        {
          "description": "<p>The parameters to create a component from a Lambda function.</p> <p>You must specify either <code>inlineRecipe</code> or <code>lambdaFunction</code>.</p>"
        }
      ]
    },
    "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>."
        }
      ]
    },
    "clientToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClientTokenString"
        },
        {
          "description": "A unique, case-sensitive identifier that you can provide to ensure that the request is idempotent. Idempotency means that the request is successfully processed only once, even if you send the request multiple times. When a request succeeds, and you specify the same client token for subsequent successful requests, the IoT Greengrass V2 service returns the successful response that it caches from the previous request. IoT Greengrass V2 caches successful responses for idempotent requests for up to 8 hours."
        }
      ]
    }
  }
}