import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetKxDatabaseRequest, GetKxDatabaseResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetKxDatabaseCommand}. */ export interface GetKxDatabaseCommandInput extends GetKxDatabaseRequest { } /** * @public * * The output of {@link GetKxDatabaseCommand}. */ export interface GetKxDatabaseCommandOutput extends GetKxDatabaseResponse, __MetadataBearer { } declare const GetKxDatabaseCommand_base: { new (input: GetKxDatabaseCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetKxDatabaseCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns database information for the specified environment ID.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { FinspaceClient, GetKxDatabaseCommand } from "@aws-sdk/client-finspace"; // ES Modules import * // const { FinspaceClient, GetKxDatabaseCommand } = 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 = { // GetKxDatabaseRequest * environmentId: "STRING_VALUE", // required * databaseName: "STRING_VALUE", // required * }; * const command = new GetKxDatabaseCommand(input); * const response = await client.send(command); * // { // GetKxDatabaseResponse * // databaseName: "STRING_VALUE", * // databaseArn: "STRING_VALUE", * // environmentId: "STRING_VALUE", * // description: "STRING_VALUE", * // createdTimestamp: new Date("TIMESTAMP"), * // lastModifiedTimestamp: new Date("TIMESTAMP"), * // lastCompletedChangesetId: "STRING_VALUE", * // numBytes: Number("long"), * // numChangesets: Number("int"), * // numFiles: Number("int"), * // }; * * ``` * * @param GetKxDatabaseCommandInput - {@link GetKxDatabaseCommandInput} * @returns {@link GetKxDatabaseCommandOutput} * @see {@link GetKxDatabaseCommandInput} for command's `input` shape. * @see {@link GetKxDatabaseCommandOutput} 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 InternalServerException} (server fault) *

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

* * @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 GetKxDatabaseCommand extends GetKxDatabaseCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetKxDatabaseRequest; output: GetKxDatabaseResponse; }; sdk: { input: GetKxDatabaseCommandInput; output: GetKxDatabaseCommandOutput; }; }; }