Interface CfnComponentVersion.LambdaContainerParamsProperty

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

@Stability(Stable) public static interface CfnComponentVersion.LambdaContainerParamsProperty extends software.amazon.jsii.JsiiSerializable
Contains information about a container in which AWS Lambda functions run on AWS IoT Greengrass core devices.

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.*;
 LambdaContainerParamsProperty lambdaContainerParamsProperty = 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();
 

See Also: