Module Values.LambdaContainerParamsSource

Contains information about a container in which Lambda functions run on Greengrass core devices.

Sourcetype nonrec t = {
  1. memorySizeInKB : OptionalInteger.t option;
    (*

    The memory size of the container, expressed in kilobytes. Default: 16384 (16 MB)

    *)
  2. mountROSysfs : OptionalBoolean.t option;
    (*

    Whether or not the container can read information from the device's /sys folder. Default: false

    *)
  3. volumes : LambdaVolumeList.t option;
    (*

    The list of volumes that the container can access.

    *)
  4. devices : LambdaDeviceList.t option;
    (*

    The list of system devices that the container can access.

    *)
}
Sourceval make : ?memorySizeInKB:??? -> ?mountROSysfs:??? -> ?volumes:??? -> ?devices:??? -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t