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

KeyValuePair

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

A key-value pair object.

interface KeyValuePair {
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.