UNPKG

opinionated-ci-pipeline

Version:

CI/CD on AWS with feature-branch builds, developer-environment deployments, and build status notifications.

9 lines (8 loc) 431 B
import { Function as LambdaFunction, FunctionProps } from 'aws-cdk-lib/aws-lambda'; import { Construct } from 'constructs'; export interface CustomNodejsFunctionProps extends Partial<Omit<FunctionProps, 'code'>>, Pick<FunctionProps, 'code'> { } export declare class CustomNodejsFunction extends LambdaFunction { private static powertoolsLayer; constructor(scope: Construct, id: string, props: CustomNodejsFunctionProps); }