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

Export

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

The Export structure describes the exported output values for a stack.

interface Export {
ExportingStackId?: string | null;
Name?: string | null;
Value?: string | null;
}

§Properties

§
ExportingStackId?: string | null
[src]

The stack that contains the exported output name and value.

§
Name?: string | null
[src]

The name of exported output value. Use this name and the Fn::ImportValue function to import the associated value into other stacks. The name is defined in the Export field in the associated stack's Outputs section.

§
Value?: string | null
[src]

The value of the exported output, such as a resource physical ID. This value is defined in the Export field in the associated stack's Outputs section.