Amazon EventBridge Pipes · JSON Structure

Amazon Eventbridge Pipes Ecs 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. You must also specify a container name.

Type: object Properties: 2
Amazon Web ServicesEvent-DrivenIntegrationMessagingServerless

EcsEnvironmentVariable 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-ecs-environment-variable-structure.json",
  "name": "EcsEnvironmentVariable",
  "description": "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. You must also specify a container name.",
  "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."
        }
      ]
    }
  }
}