import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetKxChangesetRequest, GetKxChangesetResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetKxChangesetCommand}. */ export interface GetKxChangesetCommandInput extends GetKxChangesetRequest { } /** * @public * * The output of {@link GetKxChangesetCommand}. */ export interface GetKxChangesetCommandOutput extends GetKxChangesetResponse, __MetadataBearer { } declare const GetKxChangesetCommand_base: { new (input: GetKxChangesetCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetKxChangesetCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns information about a kdb changeset.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { FinspaceClient, GetKxChangesetCommand } from "@aws-sdk/client-finspace"; // ES Modules import * // const { FinspaceClient, GetKxChangesetCommand } = 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 = { // GetKxChangesetRequest * environmentId: "STRING_VALUE", // required * databaseName: "STRING_VALUE", // required * changesetId: "STRING_VALUE", // required * }; * const command = new GetKxChangesetCommand(input); * const response = await client.send(command); * // { // GetKxChangesetResponse * // changesetId: "STRING_VALUE", * // databaseName: "STRING_VALUE", * // environmentId: "STRING_VALUE", * // changeRequests: [ // ChangeRequests * // { // ChangeRequest * // changeType: "PUT" || "DELETE", // required * // s3Path: "STRING_VALUE", * // dbPath: "STRING_VALUE", // required * // }, * // ], * // createdTimestamp: new Date("TIMESTAMP"), * // activeFromTimestamp: new Date("TIMESTAMP"), * // lastModifiedTimestamp: new Date("TIMESTAMP"), * // status: "PENDING" || "PROCESSING" || "FAILED" || "COMPLETED", * // errorInfo: { // ErrorInfo * // errorMessage: "STRING_VALUE", * // errorType: "The inputs to this request are invalid." || "Service limits have been exceeded." || "Missing required permission to perform this request." || "One or more inputs to this request were not found." || "The system temporarily lacks sufficient resources to process the request." || "An internal error has occurred." || "Cancelled" || "A user recoverable error has occurred", * // }, * // }; * * ``` * * @param GetKxChangesetCommandInput - {@link GetKxChangesetCommandInput} * @returns {@link GetKxChangesetCommandOutput} * @see {@link GetKxChangesetCommandInput} for command's `input` shape. * @see {@link GetKxChangesetCommandOutput} 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 GetKxChangesetCommand extends GetKxChangesetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetKxChangesetRequest; output: GetKxChangesetResponse; }; sdk: { input: GetKxChangesetCommandInput; output: GetKxChangesetCommandOutput; }; }; }