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 Summary
Nested ClassesModifier 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 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.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 -
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
-
builder
- Returns:
- a
LambdaRuntimeProps.Builder
ofLambdaRuntimeProps
-