Values.LambdaContainerParamsSourceContains information about a container in which Lambda functions run on Greengrass core devices.
type nonrec t = {memorySizeInKB : OptionalInteger.t option;The memory size of the container, expressed in kilobytes. Default: 16384 (16 MB)
*)mountROSysfs : OptionalBoolean.t option;Whether or not the container can read information from the device's /sys folder. Default: false
*)volumes : LambdaVolumeList.t option;The list of volumes that the container can access.
*)devices : LambdaDeviceList.t option;The list of system devices that the container can access.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of OptionalBoolean.t
| `Integer of OptionalInteger.t
| `List of
[> `Structure of
(string
* [> `Boolean of OptionalBoolean.t
| `Enum of string
| `String of FileSystemPath.t ])
list ]
list ])
list ]