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

Deletes an authentication profile.

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

The authentication profile can't be found.

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

The authentication profile request is not valid. The profile name can't be null or empty. * The authentication profile API operation must be available in the Amazon Web Services Region.

* * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* * * @public */ export declare class DeleteAuthenticationProfileCommand extends DeleteAuthenticationProfileCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteAuthenticationProfileMessage; output: DeleteAuthenticationProfileResult; }; sdk: { input: DeleteAuthenticationProfileCommandInput; output: DeleteAuthenticationProfileCommandOutput; }; }; }