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

ListFunctionsRequest

import type { ListFunctionsRequest } from "https://aws-api.deno.dev/v0.4/services/lambda.ts?docs=full";
interface ListFunctionsRequest {
FunctionVersion?: FunctionVersion | null;
Marker?: string | null;
MasterRegion?: string | null;
MaxItems?: number | null;
}

§Properties

§
FunctionVersion?: FunctionVersion | null
[src]

Set to ALL to include entries for all published versions of each function.

§
Marker?: string | null
[src]

Specify the pagination token that's returned by a previous request to retrieve the next page of results.

§
MasterRegion?: string | null
[src]

For Lambda@Edge functions, the Amazon Web Services Region of the master function. For example, us-east-1 filters the list of functions to include only Lambda@Edge functions replicated from a master function in US East (N. Virginia). If specified, you must set FunctionVersion to ALL.

§
MaxItems?: number | null
[src]

The maximum number of functions to return in the response. Note that ListFunctions returns a maximum of 50 items in each response, even if you set the number higher.