Skip to content

List Kx Users

finspace_list_kx_users R Documentation

Lists all the users in a kdb environment

Description

Lists all the users in a kdb environment.

Usage

finspace_list_kx_users(environmentId, nextToken, maxResults)

Arguments

environmentId

[required] A unique identifier for the kdb environment.

nextToken

A token that indicates where a results page should begin.

maxResults

The maximum number of results to return in this request.

Value

A list with the following syntax:

list(
  users = list(
    list(
      userArn = "string",
      userName = "string",
      iamRole = "string",
      createTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      updateTimestamp = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_kx_users(
  environmentId = "string",
  nextToken = "string",
  maxResults = 123
)