import { _UnmarshalledIdentityDescription } from './_IdentityDescription'; import * as __aws_sdk_types from '@aws-js-sdk-v3-prerelease/types'; /** *

The response to a ListIdentities request.

*/ export interface ListIdentitiesOutput { /** *

An identity pool ID in the format REGION:GUID.

*/ IdentityPoolId?: string; /** *

An object containing a set of identities and associated mappings.

*/ Identities?: Array<_UnmarshalledIdentityDescription>; /** *

A pagination token.

*/ NextToken?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }