Interface CfnComponentVersion.LambdaLinuxProcessParamsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnComponentVersion.LambdaLinuxProcessParamsProperty.Jsii$Proxy
Enclosing class:
CfnComponentVersion

@Stability(Stable) public static interface CfnComponentVersion.LambdaLinuxProcessParamsProperty extends software.amazon.jsii.JsiiSerializable
Contains parameters for a Linux process that contains an AWS Lambda function.

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();
 

See Also: