Interface LambdaRuntimeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LambdaRuntimeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:03.953Z")
@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") .isVariable(false) .supportsCodeGuruProfiling(false) .supportsInlineCode(false) .supportsSnapStart(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forLambdaRuntimeProps
static final class
An implementation forLambdaRuntimeProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic LambdaRuntimeProps.Builder
builder()
default String
The Docker image name to be used for bundling in this runtime.default Boolean
Whether the runtime enum is meant to change over time, IE NODEJS_LATEST.default Boolean
Whether this runtime is integrated with and supported for profiling using Amazon CodeGuru Profiler.default Boolean
Whether theZipFile
(aka inline code) property can be used with this runtime.default Boolean
Whether this runtime supports SnapStart.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBundlingDockerImage
The 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 -
getIsVariable
Whether the runtime enum is meant to change over time, IE NODEJS_LATEST.Default: false
-
getSupportsCodeGuruProfiling
Whether this runtime is integrated with and supported for profiling using Amazon CodeGuru Profiler.Default: false
-
getSupportsInlineCode
Whether theZipFile
(aka inline code) property can be used with this runtime.Default: false
-
getSupportsSnapStart
Whether this runtime supports SnapStart.Default: false
-
builder
- Returns:
- a
LambdaRuntimeProps.Builder
ofLambdaRuntimeProps
-