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

Modifies an authentication profile.

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

The size or number of authentication profiles has exceeded the quota. * The maximum length of the JSON string and maximum number of authentication profiles is determined by a quota for your account.

* * @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 ModifyAuthenticationProfileCommand extends ModifyAuthenticationProfileCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ModifyAuthenticationProfileMessage; output: ModifyAuthenticationProfileResult; }; sdk: { input: ModifyAuthenticationProfileCommandInput; output: ModifyAuthenticationProfileCommandOutput; }; }; }