Module Values_0.FileSystemDataSourceSource

Specifies a file system data source for a channel.

Sourcetype nonrec t = {
  1. fileSystemId : FileSystemId.t;
    (*

    The file system id.

    *)
  2. fileSystemAccessMode : FileSystemAccessMode.t;
    (*

    The access mode of the mount of the directory associated with the channel. A directory can be mounted either in ro (read-only) or rw (read-write) mode.

    *)
  3. fileSystemType : FileSystemType.t;
    (*

    The file system type.

    *)
  4. directoryPath : DirectoryPath.t;
    (*

    The full path to the directory to associate with the channel.

    *)
}
Sourceval context_ : string
Sourceval make : fileSystemId:FileSystemId.t -> fileSystemAccessMode:FileSystemAccessMode.t -> fileSystemType:FileSystemType.t -> directoryPath:DirectoryPath.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FileSystemId.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