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

Creates an authentication profile with the specified parameters.

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

The authentication profile already exists.

* * @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 CreateAuthenticationProfileCommand extends CreateAuthenticationProfileCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateAuthenticationProfileMessage; output: CreateAuthenticationProfileResult; }; sdk: { input: CreateAuthenticationProfileCommandInput; output: CreateAuthenticationProfileCommandOutput; }; }; }