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

Deletes an Amazon Redshift IAM Identity Center application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RedshiftClient, DeleteRedshiftIdcApplicationCommand } from "@aws-sdk/client-redshift"; // ES Modules import * // const { RedshiftClient, DeleteRedshiftIdcApplicationCommand } = 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 = { // DeleteRedshiftIdcApplicationMessage * RedshiftIdcApplicationArn: "STRING_VALUE", // required * }; * const command = new DeleteRedshiftIdcApplicationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteRedshiftIdcApplicationCommandInput - {@link DeleteRedshiftIdcApplicationCommandInput} * @returns {@link DeleteRedshiftIdcApplicationCommandOutput} * @see {@link DeleteRedshiftIdcApplicationCommandInput} for command's `input` shape. * @see {@link DeleteRedshiftIdcApplicationCommandOutput} for command's `response` shape. * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape. * * @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 RedshiftIdcApplicationNotExistsFault} (client fault) *

The application you attempted to find doesn't exist.

* * @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 DeleteRedshiftIdcApplicationCommand extends DeleteRedshiftIdcApplicationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteRedshiftIdcApplicationMessage; output: {}; }; sdk: { input: DeleteRedshiftIdcApplicationCommandInput; output: DeleteRedshiftIdcApplicationCommandOutput; }; }; }