Amazon FinSpace · Schema

KxUser

Represents a user within a FinSpace kdb environment with associated IAM role.

Capital MarketsData AnalyticsData ManagementFinancial-Services

Properties

Name Type Description
userArn string
userName string
iamRole string
createTimestamp string
updateTimestamp string
environmentId string
View JSON Schema on GitHub

JSON Schema

amazon-finspace-kx-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-finspace/refs/heads/main/json-schema/amazon-finspace-kx-user-schema.json",
  "title": "KxUser",
  "description": "Represents a user within a FinSpace kdb environment with associated IAM role.",
  "type": "object",
  "properties": {
    "userArn": {
      "type": "string"
    },
    "userName": {
      "type": "string"
    },
    "iamRole": {
      "type": "string"
    },
    "createTimestamp": {
      "type": "string",
      "format": "date-time"
    },
    "updateTimestamp": {
      "type": "string",
      "format": "date-time"
    },
    "environmentId": {
      "type": "string"
    }
  },
  "required": [
    "userName",
    "iamRole"
  ]
}