Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EcsEnvironmentVariable

import type { EcsEnvironmentVariable } from "https://aws-api.deno.dev/v0.4/services/pipes.ts?docs=full";

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.

interface EcsEnvironmentVariable {
name?: string | null;
value?: string | null;
}

§Properties

§
name?: string | null
[src]

The name of the key-value pair. For environment variables, this is the name of the environment variable.

§
value?: string | null
[src]

The value of the key-value pair. For environment variables, this is the value of the environment variable.