Interface LambdaRuntimeProps
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- LambdaRuntimeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:40.797Z")
@Stability(Stable)
public interface LambdaRuntimeProps
extends software.amazon.jsii.JsiiSerializable
Example:
 
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lambda.*;
 LambdaRuntimeProps lambdaRuntimeProps = LambdaRuntimeProps.builder()
         .bundlingDockerImage("bundlingDockerImage")
         .supportsCodeGuruProfiling(false)
         .supportsInlineCode(false)
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forLambdaRuntimePropsstatic final classAn implementation forLambdaRuntimeProps
- 
Method SummaryModifier and TypeMethodDescriptionstatic LambdaRuntimeProps.Builderbuilder()default StringThe Docker image name to be used for bundling in this runtime.default BooleanWhether this runtime is integrated with and supported for profiling using Amazon CodeGuru Profiler.default BooleanWhether theZipFile(aka inline code) property can be used with this runtime.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getBundlingDockerImageThe Docker image name to be used for bundling in this runtime.Default: - the latest docker image "amazon/public.ecr.aws/sam/build- " from https://gallery.ecr.aws 
- 
getSupportsCodeGuruProfilingWhether this runtime is integrated with and supported for profiling using Amazon CodeGuru Profiler.Default: false 
- 
getSupportsInlineCodeWhether theZipFile(aka inline code) property can be used with this runtime.Default: false 
- 
builder- Returns:
- a LambdaRuntimeProps.BuilderofLambdaRuntimeProps
 
 
-