Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListIdentitiesInput

import type { ListIdentitiesInput } from "https://aws-api.deno.dev/v0.3/services/cognitoidentity.ts?docs=full";

Input to the ListIdentities action.

interface ListIdentitiesInput {
HideDisabled?: boolean | null;
IdentityPoolId: string;
MaxResults: number;
NextToken?: string | null;
}

§Properties

§
HideDisabled?: boolean | null
[src]

An optional boolean parameter that allows you to hide disabled identities. If omitted, the ListIdentities API will include disabled identities in the response.

§
IdentityPoolId: string
[src]

An identity pool ID in the format REGION:GUID.

§
MaxResults: number
[src]

The maximum number of identities to return.

§
NextToken?: string | null
[src]

A pagination token.