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

UpdateExtensionRequest

import type { UpdateExtensionRequest } from "https://aws-api.deno.dev/v0.4/services/appconfig.ts?docs=full";
interface UpdateExtensionRequest {
Actions?: [key in ActionPoint]: Action[] | null | undefined | null;
Description?: string | null;
ExtensionIdentifier: string;
Parameters?: {
[key: string]: Parameter | null | undefined;
}
| null;
VersionNumber?: number | null;
}

§Properties

§
Actions?: [key in ActionPoint]: Action[] | null | undefined | null
[src]

The actions defined in the extension.

§
Description?: string | null
[src]

Information about the extension.

§
ExtensionIdentifier: string
[src]

The name, the ID, or the Amazon Resource Name (ARN) of the extension.

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

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

§
VersionNumber?: number | null
[src]

The extension version number.