interface LambdaRuntimeProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Lambda.LambdaRuntimeProps | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awslambda#LambdaRuntimeProps | 
  Java | software.amazon.awscdk.services.lambda.LambdaRuntimeProps | 
  Python | aws_cdk.aws_lambda.LambdaRuntimeProps | 
  TypeScript (source) | aws-cdk-lib » aws_lambda » LambdaRuntimeProps | 
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as lambda } from 'aws-cdk-lib';
const lambdaRuntimeProps: lambda.LambdaRuntimeProps = {
  bundlingDockerImage: 'bundlingDockerImage',
  isVariable: false,
  supportsCodeGuruProfiling: false,
  supportsInlineCode: false,
  supportsSnapStart: false,
};
Properties
| Name | Type | Description | 
|---|---|---|
| bundling | string | The Docker image name to be used for bundling in this runtime. | 
| is | boolean | Whether the runtime enum is meant to change over time, IE NODEJS_LATEST. | 
| supports | boolean | Whether this runtime is integrated with and supported for profiling using Amazon CodeGuru Profiler. | 
| supports | boolean | Whether the ZipFile (aka inline code) property can be used with this runtime. | 
| supports | boolean | Whether this runtime supports SnapStart. | 
bundlingDockerImage?
Type:
string
(optional, default: the latest docker image "amazon/public.ecr.aws/sam/build-
The Docker image name to be used for bundling in this runtime.
isVariable?
Type:
boolean
(optional, default: false)
Whether the runtime enum is meant to change over time, IE NODEJS_LATEST.
supportsCodeGuruProfiling?
Type:
boolean
(optional, default: false)
Whether this runtime is integrated with and supported for profiling using Amazon CodeGuru Profiler.
supportsInlineCode?
Type:
boolean
(optional, default: false)
Whether the ZipFile (aka inline code) property can be used with this runtime.
supportsSnapStart?
Type:
boolean
(optional, default: false)
Whether this runtime supports SnapStart.

 .NET
 Go
 Java
 Python
 TypeScript (