Module Values.LambdaDeviceMountSource

Contains information about a device that Linux processes in a container can access.

Sourcetype nonrec t = {
  1. path : FileSystemPath.t;
    (*

    The mount path for the device in the file system.

    *)
  2. permission : LambdaFilesystemPermission.t option;
    (*

    The permission to access the device: read/only (ro) or read/write (rw). Default: ro

    *)
  3. addGroupOwner : OptionalBoolean.t option;
    (*

    Whether or not to add the component's system user as an owner of the device. Default: false

    *)
}
Sourceval context_ : string
Sourceval make : ?permission:??? -> ?addGroupOwner:??? -> path:FileSystemPath.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of OptionalBoolean.t | `Enum of string | `String of FileSystemPath.t ]) 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