Amazon Cognito · JSON Structure

Identity Pools List Identity Pools Input Structure

Input to the ListIdentityPools action.

Type: object Properties: 2 Required: 1
AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

ListIdentityPoolsInput is a JSON Structure definition published by Amazon Cognito, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

MaxResults NextToken

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-structure/identity-pools-list-identity-pools-input-structure.json",
  "name": "ListIdentityPoolsInput",
  "description": "Input to the ListIdentityPools action.",
  "type": "object",
  "properties": {
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/QueryLimit"
        },
        {
          "description": "The maximum number of identities to return."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationKey"
        },
        {
          "description": "A pagination token."
        }
      ]
    }
  },
  "required": [
    "MaxResults"
  ]
}