We are excited to announce our new API Documentation.
Protected
Deletes a user in the specified kdb environment.
Use a bare-bones client and the command you need to make an API call.
import { FinspaceClient, DeleteKxUserCommand } from "@aws-sdk/client-finspace"; // ES Modules import// const { FinspaceClient, DeleteKxUserCommand } = require("@aws-sdk/client-finspace"); // CommonJS importconst client = new FinspaceClient(config);const input = { // DeleteKxUserRequest userName: "STRING_VALUE", // required environmentId: "STRING_VALUE", // required};const command = new DeleteKxUserCommand(input);const response = await client.send(command);// {};
DeleteKxUserCommandInput
DeleteKxUserCommandOutput
input
response
config
AccessDeniedException (client fault)
You do not have sufficient access to perform this action.
InternalServerException (server fault)
The request processing has failed because of an unknown error, exception or failure.
ResourceNotFoundException (client fault)
One or more resources can't be found.
ThrottlingException (client fault)
The request was denied due to request throttling.
ValidationException (client fault)
The input fails to satisfy the constraints specified by an AWS service.
FinspaceServiceException
Base exception class for all service exceptions from Finspace service.
Readonly
Static
Deletes a user in the specified kdb environment.
Example
Use a bare-bones client and the command you need to make an API call.
Param
DeleteKxUserCommandInput
Returns
DeleteKxUserCommandOutput
See
input
shape.response
shape.config
shape.Throws
AccessDeniedException (client fault)
You do not have sufficient access to perform this action.
Throws
InternalServerException (server fault)
The request processing has failed because of an unknown error, exception or failure.
Throws
ResourceNotFoundException (client fault)
One or more resources can't be found.
Throws
ThrottlingException (client fault)
The request was denied due to request throttling.
Throws
ValidationException (client fault)
The input fails to satisfy the constraints specified by an AWS service.
Throws
FinspaceServiceException
Base exception class for all service exceptions from Finspace service.