Module Values.LambdaVolumeMountSource

Contains 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.

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

    The path to the physical volume in the file system.

    *)
  2. destinationPath : FileSystemPath.t;
    (*

    The path to the logical volume in the file system.

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

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

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

    Whether or not to add the IoT Greengrass user group as an owner of the volume. Default: false

    *)
}
Sourceval context_ : string
Sourceval make : ?permission:??? -> ?addGroupOwner:??? -> sourcePath:FileSystemPath.t -> destinationPath: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