Skip to content

Create Kx User

finspace_create_kx_user R Documentation

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

Description

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

Usage

finspace_create_kx_user(environmentId, userName, iamRole, tags,
  clientToken)

Arguments

environmentId

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

userName

[required] A unique identifier for the user.

iamRole

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

tags

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

clientToken

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

Value

A list with the following syntax:

list(
  userName = "string",
  userArn = "string",
  environmentId = "string",
  iamRole = "string"
)

Request syntax

svc$create_kx_user(
  environmentId = "string",
  userName = "string",
  iamRole = "string",
  tags = list(
    "string"
  ),
  clientToken = "string"
)