import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; import type { DescribeIdentityPoolInput, IdentityPool } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeIdentityPoolCommand}. */ export interface DescribeIdentityPoolCommandInput extends DescribeIdentityPoolInput { } /** * @public * * The output of {@link DescribeIdentityPoolCommand}. */ export interface DescribeIdentityPoolCommandOutput extends IdentityPool, __MetadataBearer { } declare const DescribeIdentityPoolCommand_base: { new (input: DescribeIdentityPoolCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeIdentityPoolCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Gets details about a particular identity pool, including the pool name, ID * description, creation date, and current number of users.

*

You must use Amazon Web Services developer credentials to call this * operation.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CognitoIdentityClient, DescribeIdentityPoolCommand } from "@aws-sdk/client-cognito-identity"; // ES Modules import * // const { CognitoIdentityClient, DescribeIdentityPoolCommand } = require("@aws-sdk/client-cognito-identity"); // CommonJS import * // import type { CognitoIdentityClientConfig } from "@aws-sdk/client-cognito-identity"; * const config = {}; // type is CognitoIdentityClientConfig * const client = new CognitoIdentityClient(config); * const input = { // DescribeIdentityPoolInput * IdentityPoolId: "STRING_VALUE", // required * }; * const command = new DescribeIdentityPoolCommand(input); * const response = await client.send(command); * // { // IdentityPool * // IdentityPoolId: "STRING_VALUE", // required * // IdentityPoolName: "STRING_VALUE", // required * // AllowUnauthenticatedIdentities: true || false, // required * // AllowClassicFlow: true || false, * // SupportedLoginProviders: { // IdentityProviders * // "": "STRING_VALUE", * // }, * // DeveloperProviderName: "STRING_VALUE", * // OpenIdConnectProviderARNs: [ // OIDCProviderList * // "STRING_VALUE", * // ], * // CognitoIdentityProviders: [ // CognitoIdentityProviderList * // { // CognitoIdentityProvider * // ProviderName: "STRING_VALUE", * // ClientId: "STRING_VALUE", * // ServerSideTokenCheck: true || false, * // }, * // ], * // SamlProviderARNs: [ // SAMLProviderList * // "STRING_VALUE", * // ], * // IdentityPoolTags: { // IdentityPoolTagsType * // "": "STRING_VALUE", * // }, * // }; * * ``` * * @param DescribeIdentityPoolCommandInput - {@link DescribeIdentityPoolCommandInput} * @returns {@link DescribeIdentityPoolCommandOutput} * @see {@link DescribeIdentityPoolCommandInput} for command's `input` shape. * @see {@link DescribeIdentityPoolCommandOutput} for command's `response` shape. * @see {@link CognitoIdentityClientResolvedConfig | config} for CognitoIdentityClient's `config` shape. * * @throws {@link InternalErrorException} (server fault) *

Thrown when the service encounters an error during processing the request.

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

Thrown for missing or bad input parameter(s).

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

Thrown when a user is not authorized to access the requested resource.

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

Thrown when the requested resource (for example, a dataset or record) does not * exist.

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

Thrown when a request is throttled.

* * @throws {@link CognitoIdentityServiceException} *

Base exception class for all service exceptions from CognitoIdentity service.

* * * @public */ export declare class DescribeIdentityPoolCommand extends DescribeIdentityPoolCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeIdentityPoolInput; output: IdentityPool; }; sdk: { input: DescribeIdentityPoolCommandInput; output: DescribeIdentityPoolCommandOutput; }; }; }