@Stability(value=Stable)
public static interface CfnComponentVersion.LambdaLinuxProcessParamsProperty
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.greengrassv2.*;
LambdaLinuxProcessParamsProperty lambdaLinuxProcessParamsProperty = LambdaLinuxProcessParamsProperty.builder()
.containerParams(LambdaContainerParamsProperty.builder()
.devices(List.of(LambdaDeviceMountProperty.builder()
.addGroupOwner(false)
.path("path")
.permission("permission")
.build()))
.memorySizeInKb(123)
.mountRoSysfs(false)
.volumes(List.of(LambdaVolumeMountProperty.builder()
.addGroupOwner(false)
.destinationPath("destinationPath")
.permission("permission")
.sourcePath("sourcePath")
.build()))
.build())
.isolationMode("isolationMode")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnComponentVersion.LambdaLinuxProcessParamsProperty.Builder
A builder for
CfnComponentVersion.LambdaLinuxProcessParamsProperty |
static class |
CfnComponentVersion.LambdaLinuxProcessParamsProperty.Jsii$Proxy
An implementation for
CfnComponentVersion.LambdaLinuxProcessParamsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnComponentVersion.LambdaLinuxProcessParamsProperty.Builder |
builder() |
default Object |
getContainerParams()
The parameters for the container in which the Lambda function runs.
|
default String |
getIsolationMode()
The isolation mode for the process that contains the Lambda function.
|
@Stability(value=Stable) @Nullable default Object getContainerParams()
@Stability(value=Stable) @Nullable default String getIsolationMode()
The process can run in an isolated runtime environment inside the AWS IoT Greengrass container, or as a regular process outside any container.
Default: GreengrassContainer
@Stability(value=Stable) static CfnComponentVersion.LambdaLinuxProcessParamsProperty.Builder builder()
Copyright © 2022. All rights reserved.