I need to fix a common problem with a lambda that is a cold start issue. while I am using CDK with typescript. I have seen many solutions but did not get the right approach. if any plugin resolves my issue then where I mentioned the logic to invoke the lambda function after a certain period. also need for concurrency feature and cost is also matter while in CDK similar code I defined for a lambda-
const lambda = new aws.lambda.Function("mylambda", {
code: lambda.Code.fromAsset("/src"),
handler: "handler",
timeout: 30
});
How to fix the cold start issue.