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

AppliedExtension

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

An extension that was invoked during a deployment.

interface AppliedExtension {
ExtensionAssociationId?: string | null;
ExtensionId?: string | null;
Parameters?: {
[key: string]: string | null | undefined;
}
| null;
VersionNumber?: number | null;
}

§Properties

§
ExtensionAssociationId?: string | null
[src]

The system-generated ID for the association.

§
ExtensionId?: string | null
[src]

The system-generated ID of the extension.

§
Parameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

One or more parameters for the actions called by the extension.

§
VersionNumber?: number | null
[src]

The extension version number.