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 { CreateGlueIdentityCenterConfigurationRequest, CreateGlueIdentityCenterConfigurationResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link CreateGlueIdentityCenterConfigurationCommand}. */ export interface CreateGlueIdentityCenterConfigurationCommandInput extends CreateGlueIdentityCenterConfigurationRequest { } /** * @public * * The output of {@link CreateGlueIdentityCenterConfigurationCommand}. */ export interface CreateGlueIdentityCenterConfigurationCommandOutput extends CreateGlueIdentityCenterConfigurationResponse, __MetadataBearer { } declare const CreateGlueIdentityCenterConfigurationCommand_base: { new (input: CreateGlueIdentityCenterConfigurationCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateGlueIdentityCenterConfigurationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Creates a new Glue Identity Center configuration to enable integration between Glue and Amazon Web Services IAM * Identity Center for authentication and authorization.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, CreateGlueIdentityCenterConfigurationCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, CreateGlueIdentityCenterConfigurationCommand } = 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 = { // CreateGlueIdentityCenterConfigurationRequest * InstanceArn: "STRING_VALUE", // required * Scopes: [ // IdentityCenterScopesList * "STRING_VALUE", * ], * UserBackgroundSessionsEnabled: true || false, * }; * const command = new CreateGlueIdentityCenterConfigurationCommand(input); * const response = await client.send(command); * // { // CreateGlueIdentityCenterConfigurationResponse * // ApplicationArn: "STRING_VALUE", * // }; * * ``` * * @param CreateGlueIdentityCenterConfigurationCommandInput - {@link CreateGlueIdentityCenterConfigurationCommandInput} * @returns {@link CreateGlueIdentityCenterConfigurationCommandOutput} * @see {@link CreateGlueIdentityCenterConfigurationCommandInput} for command's `input` shape. * @see {@link CreateGlueIdentityCenterConfigurationCommandOutput} 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 AlreadyExistsException} (client fault) *

A resource to be created or added already exists.

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

Two processes are trying to modify a resource simultaneously.

* * @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 CreateGlueIdentityCenterConfigurationCommand extends CreateGlueIdentityCenterConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateGlueIdentityCenterConfigurationRequest; output: CreateGlueIdentityCenterConfigurationResponse; }; sdk: { input: CreateGlueIdentityCenterConfigurationCommandInput; output: CreateGlueIdentityCenterConfigurationCommandOutput; }; }; }