Files
admin 875c7f9b91 feat: Complete zCode CLI X with Telegram bot integration
- Add full Telegram bot functionality with Z.AI API integration
- Implement 4 tools: Bash, FileEdit, WebSearch, Git
- Add 3 agents: Code Reviewer, Architect, DevOps Engineer
- Add 6 skills for common coding tasks
- Add systemd service file for 24/7 operation
- Add nginx configuration for HTTPS webhook
- Add comprehensive documentation
- Implement WebSocket server for real-time updates
- Add logging system with Winston
- Add environment validation

🤖 zCode CLI X - Agentic coder with Z.AI + Telegram integration
2026-05-05 09:01:26 +00:00

18 KiB

@aws-sdk/client-cognito-identity

Description

AWS SDK for JavaScript CognitoIdentity Client for Node.js, Browser and React Native.

Amazon Cognito Federated Identities

Amazon Cognito Federated Identities is a web service that delivers scoped temporary credentials to mobile devices and other untrusted environments. It uniquely identifies a device and supplies the user with a consistent identity over the lifetime of an application.

Using Amazon Cognito Federated Identities, you can enable authentication with one or more third-party identity providers (Facebook, Google, or Login with Amazon) or an Amazon Cognito user pool, and you can also choose to support unauthenticated access from your app. Cognito delivers a unique identifier for each user and acts as an OpenID token provider trusted by Security Token Service (STS) to access temporary, limited-privilege Amazon Web Services credentials.

For a description of the authentication flow from the Amazon Cognito Developer Guide see Authentication Flow.

For more information see Amazon Cognito Federated Identities.

Installing

To install this package, use the CLI of your favorite package manager:

  • npm install @aws-sdk/client-cognito-identity
  • yarn add @aws-sdk/client-cognito-identity
  • pnpm add @aws-sdk/client-cognito-identity

Getting Started

Import

The AWS SDK is modulized by clients and commands. To send a request, you only need to import the CognitoIdentityClient and the commands you need, for example ListIdentityPoolsCommand:

// ES5 example
const { CognitoIdentityClient, ListIdentityPoolsCommand } = require("@aws-sdk/client-cognito-identity");
// ES6+ example
import { CognitoIdentityClient, ListIdentityPoolsCommand } from "@aws-sdk/client-cognito-identity";

Usage

To send a request:

  • Instantiate a client with configuration (e.g. credentials, region).
  • Instantiate a command with input parameters.
  • Call the send operation on the client, providing the command object as input.
const client = new CognitoIdentityClient({ region: "REGION" });

const params = { /** input parameters */ };
const command = new ListIdentityPoolsCommand(params);

Async/await

We recommend using the await operator to wait for the promise returned by send operation as follows:

// async/await.
try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  // error handling.
} finally {
  // finally.
}

Promises

You can also use Promise chaining.

client
  .send(command)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  })
  .finally(() => {
    // finally.
  });

Aggregated client

The aggregated client class is exported from the same package, but without the "Client" suffix.

CognitoIdentity extends CognitoIdentityClient and additionally supports all operations, waiters, and paginators as methods. This style may be familiar to you from the AWS SDK for JavaScript v2.

If you are bundling the AWS SDK, we recommend using only the bare-bones client (CognitoIdentityClient). More details are in the blog post on modular packages in AWS SDK for JavaScript.

import { CognitoIdentity } from "@aws-sdk/client-cognito-identity";

const client = new CognitoIdentity({ region: "REGION" });

// async/await.
try {
  const data = await client.listIdentityPools(params);
  // process data.
} catch (error) {
  // error handling.
}

// Promises.
client
  .listIdentityPools(params)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  });

// callbacks (not recommended).
client.listIdentityPools(params, (err, data) => {
  // process err and data.
});

Troubleshooting

When the service returns an exception, the error will include the exception information, as well as response metadata (e.g. request id).

try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  const { requestId, cfId, extendedRequestId } = error.$metadata;
  console.log({ requestId, cfId, extendedRequestId });
  /**
   * The keys within exceptions are also parsed.
   * You can access them by specifying exception names:
   * if (error.name === 'SomeServiceException') {
   *     const value = error.specialKeyInException;
   * }
   */
}

See also docs/ERROR_HANDLING.

Getting Help

Please use these community resources for getting help. We use GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.

To test your universal JavaScript code in Node.js, browser and react-native environments, visit our code samples repo.

Contributing

This client code is generated automatically. Any modifications will be overwritten the next time the @aws-sdk/client-cognito-identity package is updated. To contribute to client you can check our generate clients scripts.

License

This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information.

Client Commands (Operations List)

CreateIdentityPool

Command API Reference / Input / Output

DeleteIdentities

Command API Reference / Input / Output

DeleteIdentityPool

Command API Reference / Input / Output

DescribeIdentity

Command API Reference / Input / Output

DescribeIdentityPool

Command API Reference / Input / Output

GetCredentialsForIdentity

Command API Reference / Input / Output

GetId

Command API Reference / Input / Output

GetIdentityPoolRoles

Command API Reference / Input / Output

GetOpenIdToken

Command API Reference / Input / Output

GetOpenIdTokenForDeveloperIdentity

Command API Reference / Input / Output

GetPrincipalTagAttributeMap

Command API Reference / Input / Output

ListIdentities

Command API Reference / Input / Output

ListIdentityPools

Command API Reference / Input / Output

ListTagsForResource

Command API Reference / Input / Output

LookupDeveloperIdentity

Command API Reference / Input / Output

MergeDeveloperIdentities

Command API Reference / Input / Output

SetIdentityPoolRoles

Command API Reference / Input / Output

SetPrincipalTagAttributeMap

Command API Reference / Input / Output

TagResource

Command API Reference / Input / Output

UnlinkDeveloperIdentity

Command API Reference / Input / Output

UnlinkIdentity

Command API Reference / Input / Output

UntagResource

Command API Reference / Input / Output

UpdateIdentityPool

Command API Reference / Input / Output