Values.LambdaVolumeMountSourceContains information about a volume that Linux processes in a container can access. When you define a volume, the IoT Greengrass Core software mounts the source files to the destination inside the container.
type nonrec t = {sourcePath : FileSystemPath.t;The path to the physical volume in the file system.
*)destinationPath : FileSystemPath.t;The path to the logical volume in the file system.
*)permission : LambdaFilesystemPermission.t option;The permission to access the volume: read/only (ro) or read/write (rw). Default: ro
*)addGroupOwner : OptionalBoolean.t option;Whether or not to add the IoT Greengrass user group as an owner of the volume. Default: false
*)}val make :
?permission:??? ->
?addGroupOwner:??? ->
sourcePath:FileSystemPath.t ->
destinationPath:FileSystemPath.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of OptionalBoolean.t
| `Enum of string
| `String of FileSystemPath.t ])
list ]