Amazon Cognito · Schema
GetIdInput
Input to the GetId action.
AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity
Properties
| Name | Type | Description |
|---|---|---|
| AccountId | object | |
| IdentityPoolId | object | |
| Logins | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-schema/identity-pools-get-id-input-schema.json",
"title": "GetIdInput",
"description": "Input to the GetId action.",
"type": "object",
"properties": {
"AccountId": {
"allOf": [
{
"$ref": "#/components/schemas/AccountId"
},
{
"description": "A standard AWS account ID (9+ digits)."
}
]
},
"IdentityPoolId": {
"allOf": [
{
"$ref": "#/components/schemas/IdentityPoolId"
},
{
"description": "An identity pool ID in the format REGION:GUID."
}
]
},
"Logins": {
"allOf": [
{
"$ref": "#/components/schemas/LoginsMap"
},
{
"description": "<p>A set of optional name-value pairs that map provider names to provider tokens. The available provider names for <code>Logins</code> are as follows:</p> <ul> <li> <p>Facebook: <code>graph.facebook.com</code> </p> </li> <li> <p>Amazon Cognito user pool: <code>cognito-idp.<region>.amazonaws.com/<YOUR_USER_POOL_ID></code>, for example, <code>cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789</code>. </p> </li> <li> <p>Google: <code>accounts.google.com</code> </p> </li> <li> <p>Amazon: <code>www.amazon.com</code> </p> </li> <li> <p>Twitter: <code>api.twitter.com</code> </p> </li> <li> <p>Digits: <code>www.digits.com</code> </p> </li> </ul>"
}
]
}
},
"required": [
"IdentityPoolId"
]
}