amazon cognito 是否支持 IAM 用户身份验证

Does amzon congnito support for authenticating for IAM user

有一个基本的查询,我只是假设我是一个手游厂商,并且我有一些游戏玩家(用户)。我想确认玩家是否会是IAM User?如果是这样,如何使用 Amazon congnito 对 IAM 用户进行身份验证?文件没有提到它..

AWS IAM 用户没有 API 到 login/authenticate(验证密码)。 Amazon Cognito 允许您在 players/users 使用 Facebook、Twitter、Digits、Amazon、Google 或任何 OpenID Connect 兼容提供商(参见 External Identity Providers in the documentation). Alternatively, if you store your users and their credentials in your own backend database, you can use Cognito's Developer Authenticated Identities feature to authenticate your players (docs, sample)登录时对他们进行身份验证。

无论是使用外部提供商还是开发人员身份验证,Cognito 都可以让您为用户提供 AWS 凭证,以便他们可以直接访问您在 AWS 中的资源(例如 S3 或 DynamoDB)。