import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; import type { UpdateGlueIdentityCenterConfigurationRequest, UpdateGlueIdentityCenterConfigurationResponse } from "../models/models_3"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateGlueIdentityCenterConfigurationCommand}. */ export interface UpdateGlueIdentityCenterConfigurationCommandInput extends UpdateGlueIdentityCenterConfigurationRequest { } /** * @public * * The output of {@link UpdateGlueIdentityCenterConfigurationCommand}. */ export interface UpdateGlueIdentityCenterConfigurationCommandOutput extends UpdateGlueIdentityCenterConfigurationResponse, __MetadataBearer { } declare const UpdateGlueIdentityCenterConfigurationCommand_base: { new (input: UpdateGlueIdentityCenterConfigurationCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [UpdateGlueIdentityCenterConfigurationCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Updates the existing Glue Identity Center configuration, allowing modification of scopes and permissions for the integration.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, UpdateGlueIdentityCenterConfigurationCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, UpdateGlueIdentityCenterConfigurationCommand } = require("@aws-sdk/client-glue"); // CommonJS import * // import type { GlueClientConfig } from "@aws-sdk/client-glue"; * const config = {}; // type is GlueClientConfig * const client = new GlueClient(config); * const input = { // UpdateGlueIdentityCenterConfigurationRequest * Scopes: [ // IdentityCenterScopesList * "STRING_VALUE", * ], * UserBackgroundSessionsEnabled: true || false, * }; * const command = new UpdateGlueIdentityCenterConfigurationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateGlueIdentityCenterConfigurationCommandInput - {@link UpdateGlueIdentityCenterConfigurationCommandInput} * @returns {@link UpdateGlueIdentityCenterConfigurationCommandOutput} * @see {@link UpdateGlueIdentityCenterConfigurationCommandInput} for command's `input` shape. * @see {@link UpdateGlueIdentityCenterConfigurationCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Access to a resource was denied.

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

Two processes are trying to modify a resource simultaneously.

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

A specified entity does not exist

* * @throws {@link InternalServiceException} (server fault) *

An internal service error occurred.

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

The input provided was not valid.

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

The operation timed out.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class UpdateGlueIdentityCenterConfigurationCommand extends UpdateGlueIdentityCenterConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateGlueIdentityCenterConfigurationRequest; output: {}; }; sdk: { input: UpdateGlueIdentityCenterConfigurationCommandInput; output: UpdateGlueIdentityCenterConfigurationCommandOutput; }; }; }