This repository has been archived on 2026-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
next-deploy/packages/aws-lambda/types.d.ts

21 lines
423 B
TypeScript

import { Lambda } from 'aws-sdk';
import { Role } from '@next-deploy/aws-iam-role/types';
export type AwsLambdaInputs = {
name: string;
description: string;
memory: number;
timeout: number;
code: string;
bucket: any;
shims: never[];
handler: string;
runtime: string;
env: Record<string, string>;
region: string;
role: Role;
arn?: string;
zipPath: string;
hash?: string;
lambda?: Lambda;
};