Module Values.UpdateKxUserRequestSource

Updates the user details. You can only update the IAM role associated with a user.

Sourcetype nonrec t = {
  1. environmentId : IdType.t;
    (*

    A unique identifier for the kdb environment.

    *)
  2. userName : KxUserNameString.t;
    (*

    A unique identifier for the user.

    *)
  3. iamRole : RoleArn.t;
    (*

    The IAM role ARN that is associated with the user.

    *)
  4. clientToken : ClientToken.t option;
    (*

    A token that ensures idempotency. This token expires in 10 minutes.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> environmentId:IdType.t -> userName:KxUserNameString.t -> iamRole:RoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IdType.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