Module Values.RootDirectorySource

Specifies the root directory path and optional creation permissions for newly created directories.

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

    The path to use as the root directory for the access point.

    *)
  2. creationPermissions : CreationPermissions.t option;
    (*

    The permissions to set on newly created directories.

    *)
}
Sourceval make : ?path:??? -> ?creationPermissions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Path.t | `Structure of (string * [> `Long of OwnerUid.t | `String of Permissions.t ]) 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