Module Values.CreateKxUserRequestSource

Creates a user in FinSpace kdb environment with an associated IAM role.

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

    A unique identifier for the kdb environment where you want to create a user.

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

    A unique identifier for the user.

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

    The IAM role ARN that will be associated with the user.

    *)
  4. tags : TagMap.t option;
    (*

    A list of key-value pairs to label the user. You can add up to 50 tags to a user.

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

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

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