@enfo/aws-cdkompliance
Version:
Tagging and compliant resources using the CDK
16 lines • 516 B
TypeScript
import { Function as LambdaFunction, FunctionProps, Runtime } from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
/**
* Valid runtimes, does not contain custom runtimes
*/
export declare const validRuntimes: Runtime[];
/**
* Compliant Lambda Function.
*
* See README for usage examples
*/
export declare class Function extends LambdaFunction {
constructor(scope: Construct, id: string, props: FunctionProps);
protected checkRuntime(): string[];
}
//# sourceMappingURL=lambda.d.ts.map