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

ExportedEnvironmentVariable

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

Contains information about an exported environment variable.

Exported environment variables are used in conjunction with CodePipeline to export environment variables from the current build stage to subsequent stages in the pipeline. For more information, see Working with variables in the CodePipeline User Guide.

Note: During a build, the value of a variable is available starting with the install phase. It can be updated between the start of the install phase and the end of the post_build phase. After the post_build phase ends, the value of exported variables cannot change.

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

§Properties

§
name?: string | null
[src]

The name of the exported environment variable.

§
value?: string | null
[src]

The value assigned to the exported environment variable.