import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CreateKxUserRequest, CreateKxUserResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link CreateKxUserCommand}. */ export interface CreateKxUserCommandInput extends CreateKxUserRequest { } /** * @public * * The output of {@link CreateKxUserCommand}. */ export interface CreateKxUserCommandOutput extends CreateKxUserResponse, __MetadataBearer { } declare const CreateKxUserCommand_base: { new (input: CreateKxUserCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateKxUserCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

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

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { FinspaceClient, CreateKxUserCommand } from "@aws-sdk/client-finspace"; // ES Modules import * // const { FinspaceClient, CreateKxUserCommand } = require("@aws-sdk/client-finspace"); // CommonJS import * // import type { FinspaceClientConfig } from "@aws-sdk/client-finspace"; * const config = {}; // type is FinspaceClientConfig * const client = new FinspaceClient(config); * const input = { // CreateKxUserRequest * environmentId: "STRING_VALUE", // required * userName: "STRING_VALUE", // required * iamRole: "STRING_VALUE", // required * tags: { // TagMap * "": "STRING_VALUE", * }, * clientToken: "STRING_VALUE", * }; * const command = new CreateKxUserCommand(input); * const response = await client.send(command); * // { // CreateKxUserResponse * // userName: "STRING_VALUE", * // userArn: "STRING_VALUE", * // environmentId: "STRING_VALUE", * // iamRole: "STRING_VALUE", * // }; * * ``` * * @param CreateKxUserCommandInput - {@link CreateKxUserCommandInput} * @returns {@link CreateKxUserCommandOutput} * @see {@link CreateKxUserCommandInput} for command's `input` shape. * @see {@link CreateKxUserCommandOutput} for command's `response` shape. * @see {@link FinspaceClientResolvedConfig | config} for FinspaceClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

* * @throws {@link ConflictException} (client fault) *

There was a conflict with this action, and it could not be completed.

* * @throws {@link InternalServerException} (server fault) *

The request processing has failed because of an unknown error, exception or * failure.

* * @throws {@link LimitExceededException} (client fault) *

A service limit or quota is exceeded.

* * @throws {@link ResourceAlreadyExistsException} (client fault) *

The specified resource group already exists.

* * @throws {@link ResourceNotFoundException} (client fault) *

One or more resources can't be found.

* * @throws {@link ThrottlingException} (client fault) *

The request was denied due to request throttling.

* * @throws {@link ValidationException} (client fault) *

The input fails to satisfy the constraints specified by an AWS service.

* * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* * * @public */ export declare class CreateKxUserCommand extends CreateKxUserCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateKxUserRequest; output: CreateKxUserResponse; }; sdk: { input: CreateKxUserCommandInput; output: CreateKxUserCommandOutput; }; }; }