Module Values.OneDriveUsersSource

User accounts whose documents should be indexed.

Sourcetype nonrec t = {
  1. oneDriveUserList : OneDriveUserList.t option;
    (*

    A list of users whose documents should be indexed. Specify the user names in email format, for example, username@tenantdomain. If you need to index the documents of more than 10 users, use the OneDriveUserS3Path field to specify the location of a file containing a list of users.

    *)
  2. oneDriveUserS3Path : S3Path.t option;
    (*

    The S3 bucket location of a file containing a list of users whose documents should be indexed.

    *)
}
Sourceval make : ?oneDriveUserList:??? -> ?oneDriveUserS3Path:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of OneDriveUser.t ] list | `Structure of (string * [> `String of S3BucketName.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