-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlambda-function.ts
34 lines (27 loc) · 1.08 KB
/
lambda-function.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { aws_lambda as lambda } from 'aws-cdk-lib';
import * as k from 'cdk8s';
import * as base from './base';
import * as klambdafunctions from '../imports/lambdafunctions-lambda.services.k8s.aws';
export class LambdaFunctionMapper extends base.CloudFormationResourceMapper {
public readonly type: string = 'AWS::Lambda::Function';
public readonly exportMappings: base.CloudFormationMapperExportMapping[] = [];
public readonly nameMapping: base.CloudFormationMapperNameMapping = {
cfnProperty: 'functionName',
specPath: '/spec/name',
};
public map(logicalId: string, cfnProperties: any): k.ApiObject {
const properties = cfnProperties as lambda.CfnFunctionProps;
return new klambdafunctions.Function(this.chart, logicalId, {
metadata: { name: properties.functionName },
spec: {
code: {
imageUri: (properties.code as lambda.CfnFunction.CodeProperty).imageUri,
},
name: properties.functionName!,
role: properties.role,
handler: properties.handler,
runtime: properties.runtime,
},
});
}
}