Module Values.PutUsersRequestSource

Adds one or more users to a Users dataset. For more information see Importing users individually.

Sourcetype nonrec t = {
  1. datasetArn : Arn.t;
    (*

    The Amazon Resource Name (ARN) of the Users dataset you are adding the user or users to.

    *)
  2. users : UserList.t;
    (*

    A list of user data.

    *)
}
Sourceval context_ : string
Sourceval make : datasetArn:Arn.t -> users:UserList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of StringType.t ]) list ] list | `String of Arn.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