import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { LakehouseConfiguration } from "../models/models_0"; import type { ModifyLakehouseConfigurationMessage } from "../models/models_1"; import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ModifyLakehouseConfigurationCommand}. */ export interface ModifyLakehouseConfigurationCommandInput extends ModifyLakehouseConfigurationMessage { } /** * @public * * The output of {@link ModifyLakehouseConfigurationCommand}. */ export interface ModifyLakehouseConfigurationCommandOutput extends LakehouseConfiguration, __MetadataBearer { } declare const ModifyLakehouseConfigurationCommand_base: { new (input: ModifyLakehouseConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ModifyLakehouseConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Modifies the lakehouse configuration for a cluster. This operation allows you to manage Amazon Redshift federated permissions and Amazon Web Services IAM Identity Center trusted identity propagation.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RedshiftClient, ModifyLakehouseConfigurationCommand } from "@aws-sdk/client-redshift"; // ES Modules import * // const { RedshiftClient, ModifyLakehouseConfigurationCommand } = require("@aws-sdk/client-redshift"); // CommonJS import * // import type { RedshiftClientConfig } from "@aws-sdk/client-redshift"; * const config = {}; // type is RedshiftClientConfig * const client = new RedshiftClient(config); * const input = { // ModifyLakehouseConfigurationMessage * ClusterIdentifier: "STRING_VALUE", // required * LakehouseRegistration: "Register" || "Deregister", * CatalogName: "STRING_VALUE", * LakehouseIdcRegistration: "Associate" || "Disassociate", * LakehouseIdcApplicationArn: "STRING_VALUE", * DryRun: true || false, * }; * const command = new ModifyLakehouseConfigurationCommand(input); * const response = await client.send(command); * // { // LakehouseConfiguration * // ClusterIdentifier: "STRING_VALUE", * // LakehouseIdcApplicationArn: "STRING_VALUE", * // LakehouseRegistrationStatus: "STRING_VALUE", * // CatalogArn: "STRING_VALUE", * // }; * * ``` * * @param ModifyLakehouseConfigurationCommandInput - {@link ModifyLakehouseConfigurationCommandInput} * @returns {@link ModifyLakehouseConfigurationCommandOutput} * @see {@link ModifyLakehouseConfigurationCommandInput} for command's `input` shape. * @see {@link ModifyLakehouseConfigurationCommandOutput} for command's `response` shape. * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape. * * @throws {@link ClusterNotFoundFault} (client fault) *

The ClusterIdentifier parameter does not refer to an existing cluster. *

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

A dependent service denied access for the integration.

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

Your request cannot be completed because a dependent internal service is * temporarily unavailable. Wait 30 to 60 seconds and try again.

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

The specified cluster is not in the available state.

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

The application you attempted to find doesn't exist.

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

Your account is not authorized to perform the requested operation.

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

The requested operation isn't supported.

* * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* * * @public */ export declare class ModifyLakehouseConfigurationCommand extends ModifyLakehouseConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ModifyLakehouseConfigurationMessage; output: LakehouseConfiguration; }; sdk: { input: ModifyLakehouseConfigurationCommandInput; output: ModifyLakehouseConfigurationCommandOutput; }; }; }