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

CreateFunctionDefinitionVersionRequest

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

Information needed to create a function definition version.

interface CreateFunctionDefinitionVersionRequest {
AmznClientToken?: string | null;
DefaultConfig?: FunctionDefaultConfig | null;
FunctionDefinitionId: string;
Functions?: Function[] | null;
}

§Properties

§
AmznClientToken?: string | null
[src]

A client token used to correlate requests and responses.

§
DefaultConfig?: FunctionDefaultConfig | null
[src]

The default configuration that applies to all Lambda functions in this function definition version. Individual Lambda functions can override these settings.

§
FunctionDefinitionId: string
[src]

The ID of the Lambda function definition.

§
Functions?: Function[] | null
[src]

A list of Lambda functions in this function definition version.