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

EnvironmentVariable

import type { EnvironmentVariable } from "https://aws-api.deno.dev/v0.3/services/opsworks.ts?docs=full";

Represents an app's environment variable.

interface EnvironmentVariable {
Key: string;
Secure?: boolean | null;
Value: string;
}

§Properties

§
Key: string
[src]

(Required) The environment variable's name, which can consist of up to 64 characters and must be specified. The name can contain upper- and lowercase letters, numbers, and underscores (_), but it must start with a letter or underscore.

§
Secure?: boolean | null
[src]

(Optional) Whether the variable's value will be returned by the "DescribeApps" action. To conceal an environment variable's value, set Secure to true. DescribeApps then returns *****FILTERED***** instead of the actual value. The default value for Secure is false.

§
Value: string
[src]

(Optional) The environment variable's value, which can be left empty. If you specify a value, it can contain up to 256 characters, which must all be printable.