Module Values_0.AssociateUserProficienciesRequestSource

Associates a set of proficiencies with a user.

Sourcetype nonrec t = {
  1. instanceId : InstanceId.t;
    (*

    The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN of the instance).

    *)
  2. userId : UserId.t;
    (*

    The identifier of the user account.

    *)
  3. userProficiencies : UserProficiencyList.t;
    (*

    The proficiencies to associate with the user.

    *)
}
Sourceval context_ : string
Sourceval make : instanceId:InstanceId.t -> userId:UserId.t -> userProficiencies:UserProficiencyList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Float of ProficiencyLevel.t | `String of PredefinedAttributeName.t ]) list ] list | `String of InstanceId.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