LambdaRuntimeProps¶
-
class
aws_cdk.aws_lambda.
LambdaRuntimeProps
(*, bundling_docker_image=None, supports_code_guru_profiling=None, supports_inline_code=None)¶ Bases:
object
- Parameters
bundling_docker_image (
Optional
[str
]) – The Docker image name to be used for bundling in this runtime. Default: - the latest docker image “amazon/aws-sam-cli-build-image-” from https://hub.docker.com/u/amazonsupports_code_guru_profiling (
Optional
[bool
]) – Whether this runtime is integrated with and supported for profiling using Amazon CodeGuru Profiler. Default: falsesupports_inline_code (
Optional
[bool
]) – Whether theZipFile
(aka inline code) property can be used with this runtime. Default: false
Attributes
-
bundling_docker_image
¶ The Docker image name to be used for bundling in this runtime.
- Default
the latest docker image “amazon/aws-sam-cli-build-image-” from https://hub.docker.com/u/amazon
- Return type
Optional
[str
]
-
supports_code_guru_profiling
¶ Whether this runtime is integrated with and supported for profiling using Amazon CodeGuru Profiler.
- Default
false
- Return type
Optional
[bool
]
-
supports_inline_code
¶ Whether the
ZipFile
(aka inline code) property can be used with this runtime.- Default
false
- Return type
Optional
[bool
]