import { Lambda } from "aws-sdk"; import { AwsRegion } from "common-types"; export interface ILambdaFunctionsOptions { /** explicitly state the region you are interested in */ region?: AwsRegion; /** explicitly state the AWS profile to use */ profile?: string; } /** * **getLambdaFunctions** * * Returns an array of lambda functions for a given AWS _profile_ and * _region_. * * The options hash allows you to state explicitly which profile/region but if you * skip this then an attempt will be made to figure it out based on * ENV variables and files in the working directory. */ export declare function getLambdaFunctions(opts?: ILambdaFunctionsOptions): Promise; //# sourceMappingURL=getLambdaFunctions.d.ts.map