import { _CognitoIdentityProvider } from './_CognitoIdentityProvider'; import { BrowserHttpOptions as __HttpOptions__ } from '@aws-js-sdk-v3-prerelease/types'; import * as __aws_sdk_types from '@aws-js-sdk-v3-prerelease/types'; /** *

Input to the CreateIdentityPool action.

*/ export interface CreateIdentityPoolInput { /** *

A string that you provide.

*/ IdentityPoolName: string; /** *

TRUE if the identity pool supports unauthenticated logins.

*/ AllowUnauthenticatedIdentities: boolean; /** *

Optional key:value pairs mapping provider names to provider app IDs.

*/ SupportedLoginProviders?: { [key: string]: string; } | Iterable<[string, string]>; /** *

The "domain" by which Cognito will refer to your users. This name acts as a placeholder that allows your backend and the Cognito service to communicate about the developer provider. For the DeveloperProviderName, you can use letters as well as period (.), underscore (_), and dash (-).

Once you have set a developer provider name, you cannot change it. Please take care in setting this parameter.

*/ DeveloperProviderName?: string; /** *

A list of OpendID Connect provider ARNs.

*/ OpenIdConnectProviderARNs?: Array | Iterable; /** *

An array of Amazon Cognito Identity user pools and their client IDs.

*/ CognitoIdentityProviders?: Array<_CognitoIdentityProvider> | Iterable<_CognitoIdentityProvider>; /** *

An array of Amazon Resource Names (ARNs) of the SAML provider for your identity pool.

*/ SamlProviderARNs?: Array | Iterable; /** * The maximum number of times this operation should be retried. If set, this value will override the `maxRetries` configuration set on the client for this command. */ $maxRetries?: number; /** * An object that may be queried to determine if the underlying operation has been aborted. * * @see https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal */ $abortSignal?: __aws_sdk_types.AbortSignal; /** * Per-request HTTP configuration options. If set, any options specified will override the corresponding HTTP option set on the client for this command. */ $httpOptions?: __HttpOptions__; }