import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeAuthenticationProfilesMessage, DescribeAuthenticationProfilesResult } from "../models/models_0"; import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeAuthenticationProfilesCommand}. */ export interface DescribeAuthenticationProfilesCommandInput extends DescribeAuthenticationProfilesMessage { } /** * @public * * The output of {@link DescribeAuthenticationProfilesCommand}. */ export interface DescribeAuthenticationProfilesCommandOutput extends DescribeAuthenticationProfilesResult, __MetadataBearer { } declare const DescribeAuthenticationProfilesCommand_base: { new (input: DescribeAuthenticationProfilesCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeAuthenticationProfilesCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Describes an authentication profile.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RedshiftClient, DescribeAuthenticationProfilesCommand } from "@aws-sdk/client-redshift"; // ES Modules import * // const { RedshiftClient, DescribeAuthenticationProfilesCommand } = 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 = { // DescribeAuthenticationProfilesMessage * AuthenticationProfileName: "STRING_VALUE", * }; * const command = new DescribeAuthenticationProfilesCommand(input); * const response = await client.send(command); * // { // DescribeAuthenticationProfilesResult * // AuthenticationProfiles: [ // AuthenticationProfileList * // { // AuthenticationProfile * // AuthenticationProfileName: "STRING_VALUE", * // AuthenticationProfileContent: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param DescribeAuthenticationProfilesCommandInput - {@link DescribeAuthenticationProfilesCommandInput} * @returns {@link DescribeAuthenticationProfilesCommandOutput} * @see {@link DescribeAuthenticationProfilesCommandInput} for command's `input` shape. * @see {@link DescribeAuthenticationProfilesCommandOutput} 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 DescribeAuthenticationProfilesCommand extends DescribeAuthenticationProfilesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeAuthenticationProfilesMessage; output: DescribeAuthenticationProfilesResult; }; sdk: { input: DescribeAuthenticationProfilesCommandInput; output: DescribeAuthenticationProfilesCommandOutput; }; }; }