Amazon EventBridge Pipes · JSON Structure

Amazon Eventbridge Pipes Batch Environment Variable Structure

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the task definition.

Environment variables cannot start with "Batch". This naming convention is reserved for variables that Batch sets.

Type: object Properties: 2
Amazon Web ServicesEvent-DrivenIntegrationMessagingServerless

BatchEnvironmentVariable is a JSON Structure definition published by Amazon EventBridge Pipes, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name Value

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-eventbridge-pipes/refs/heads/main/json-structure/amazon-eventbridge-pipes-batch-environment-variable-structure.json",
  "name": "BatchEnvironmentVariable",
  "description": "<p>The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the task definition.</p> <note> <p>Environment variables cannot start with \"<code>Batch</code>\". This naming convention is reserved for variables that Batch sets.</p> </note>",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the key-value pair. For environment variables, this is the name of the environment variable."
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The value of the key-value pair. For environment variables, this is the value of the environment variable."
        }
      ]
    }
  }
}