Interface CfnComponentVersion.LambdaVolumeMountProperty

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

@Stability(Stable) public static interface CfnComponentVersion.LambdaVolumeMountProperty extends software.amazon.jsii.JsiiSerializable
Contains information about a volume that Linux processes in a container can access.

When you define a volume, the AWS IoT Greengrass Core software mounts the source files to the destination inside the container.

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.*;
 LambdaVolumeMountProperty lambdaVolumeMountProperty = LambdaVolumeMountProperty.builder()
         .addGroupOwner(false)
         .destinationPath("destinationPath")
         .permission("permission")
         .sourcePath("sourcePath")
         .build();
 

See Also: