import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetEnvironmentCommand}. */ export interface GetEnvironmentCommandInput extends GetEnvironmentRequest { } /** * @public * * The output of {@link GetEnvironmentCommand}. */ export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __MetadataBearer { } declare const GetEnvironmentCommand_base: { new (input: GetEnvironmentCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetEnvironmentCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns the FinSpace environment object.

* * @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, GetEnvironmentCommand } from "@aws-sdk/client-finspace"; // ES Modules import * // const { FinspaceClient, GetEnvironmentCommand } = 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 = { // GetEnvironmentRequest * environmentId: "STRING_VALUE", // required * }; * const command = new GetEnvironmentCommand(input); * const response = await client.send(command); * // { // GetEnvironmentResponse * // environment: { // Environment * // name: "STRING_VALUE", * // environmentId: "STRING_VALUE", * // awsAccountId: "STRING_VALUE", * // status: "CREATE_REQUESTED" || "CREATING" || "CREATED" || "DELETE_REQUESTED" || "DELETING" || "DELETED" || "FAILED_CREATION" || "RETRY_DELETION" || "FAILED_DELETION" || "UPDATE_NETWORK_REQUESTED" || "UPDATING_NETWORK" || "FAILED_UPDATING_NETWORK" || "SUSPENDED", * // environmentUrl: "STRING_VALUE", * // description: "STRING_VALUE", * // environmentArn: "STRING_VALUE", * // sageMakerStudioDomainUrl: "STRING_VALUE", * // kmsKeyId: "STRING_VALUE", * // dedicatedServiceAccountId: "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", * // }, * // }, * // }, * // }; * * ``` * * @param GetEnvironmentCommandInput - {@link GetEnvironmentCommandInput} * @returns {@link GetEnvironmentCommandOutput} * @see {@link GetEnvironmentCommandInput} for command's `input` shape. * @see {@link GetEnvironmentCommandOutput} 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 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 GetEnvironmentCommand extends GetEnvironmentCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetEnvironmentRequest; output: GetEnvironmentResponse; }; sdk: { input: GetEnvironmentCommandInput; output: GetEnvironmentCommandOutput; }; }; }