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?: ArrayAn 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