Module Values.LambdaLinuxProcessParamsSource

Contains parameters for a Linux process that contains an Lambda function.

Sourcetype nonrec t = {
  1. isolationMode : LambdaIsolationMode.t option;
    (*

    The isolation mode for the process that contains the Lambda function. The process can run in an isolated runtime environment inside the IoT Greengrass container, or as a regular process outside any container. Default: GreengrassContainer

    *)
  2. containerParams : LambdaContainerParams.t option;
    (*

    The parameters for the container in which the Lambda function runs.

    *)
}
Sourceval make : ?isolationMode:??? -> ?containerParams:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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 ]) 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