Amazon Cognito · Schema

GetCredentialsForIdentityResponse

Returned in response to a successful GetCredentialsForIdentity operation.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
IdentityId object
Credentials object
View JSON Schema on GitHub

JSON Schema

cognito-identity-get-credentials-for-identity-response-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "IdentityId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityId"
        },
        {
          "description": "A unique identifier in the format REGION:GUID."
        }
      ]
    },
    "Credentials": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Credentials"
        },
        {
          "description": "Credentials for the provided identity ID."
        }
      ]
    }
  },
  "description": "Returned in response to a successful <code>GetCredentialsForIdentity</code> operation.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-identity-get-credentials-for-identity-response-schema.json",
  "title": "GetCredentialsForIdentityResponse"
}