Values.CreateKxUserRequestSourceCreates a user in FinSpace kdb environment with an associated IAM role.
type nonrec t = {environmentId : IdType.t;A unique identifier for the kdb environment where you want to create a user.
*)userName : KxUserNameString.t;A unique identifier for the user.
*)iamRole : RoleArn.t;The IAM role ARN that will be associated with the user.
*)clientToken : ClientToken.t option;A token that ensures idempotency. This token expires in 10 minutes.
*)}val make :
?tags:??? ->
?clientToken:??? ->
environmentId:IdType.t ->
userName:KxUserNameString.t ->
iamRole:RoleArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of IdType.t ])
list ]