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

CreateExtensionRequest

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

§Properties

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

The actions defined in the extension.

§
Description?: string | null
[src]

Information about the extension.

§
LatestVersionNumber?: number | null
[src]

You can omit this field when you create an extension. When you create a new version, specify the most recent current version number. For example, you create version 3, enter 2 for this field.

§
Name: string
[src]

A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

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

The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object.

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

Adds one or more tags for the specified extension. Tags are metadata that help you categorize resources in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value, both of which you define.