import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link CreateEnvironmentCommand}. */ export interface CreateEnvironmentCommandInput extends CreateEnvironmentRequest { } /** * @public * * The output of {@link CreateEnvironmentCommand}. */ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentResponse, __MetadataBearer { } declare const CreateEnvironmentCommand_base: { new (input: CreateEnvironmentCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateEnvironmentCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Create a new FinSpace environment.

* * @deprecated This method will be discontinued. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { FinspaceClient, CreateEnvironmentCommand } from "@aws-sdk/client-finspace"; // ES Modules import * // const { FinspaceClient, CreateEnvironmentCommand } = 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 = { // CreateEnvironmentRequest * name: "STRING_VALUE", // required * description: "STRING_VALUE", * kmsKeyId: "STRING_VALUE", * tags: { // TagMap * "": "STRING_VALUE", * }, * federationMode: "FEDERATED" || "LOCAL", * federationParameters: { // FederationParameters * samlMetadataDocument: "STRING_VALUE", * samlMetadataURL: "STRING_VALUE", * applicationCallBackURL: "STRING_VALUE", * federationURN: "STRING_VALUE", * federationProviderName: "STRING_VALUE", * attributeMap: { // AttributeMap * "": "STRING_VALUE", * }, * }, * superuserParameters: { // SuperuserParameters * emailAddress: "STRING_VALUE", // required * firstName: "STRING_VALUE", // required * lastName: "STRING_VALUE", // required * }, * dataBundles: [ // DataBundleArns * "STRING_VALUE", * ], * }; * const command = new CreateEnvironmentCommand(input); * const response = await client.send(command); * // { // CreateEnvironmentResponse * // environmentId: "STRING_VALUE", * // environmentArn: "STRING_VALUE", * // environmentUrl: "STRING_VALUE", * // }; * * ``` * * @param CreateEnvironmentCommandInput - {@link CreateEnvironmentCommandInput} * @returns {@link CreateEnvironmentCommandOutput} * @see {@link CreateEnvironmentCommandInput} for command's `input` shape. * @see {@link CreateEnvironmentCommandOutput} 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 LimitExceededException} (client fault) *

A service limit or quota is exceeded.

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

You have exceeded your service quota. To perform the requested action, * remove some of the relevant resources, or use Service Quotas to request a service quota increase.

* * @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 CreateEnvironmentCommand extends CreateEnvironmentCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateEnvironmentRequest; output: CreateEnvironmentResponse; }; sdk: { input: CreateEnvironmentCommandInput; output: CreateEnvironmentCommandOutput; }; }; }