ids
Creates, updates, deletes, gets or lists an ids resource.
Overview
| Name | ids |
| Type | Resource |
| Id | aws.cognito_identity.ids |
Fields
The following fields are returned by SELECT queries:
- get_id
| Name | Datatype | Description |
|---|---|---|
identity_id | string | A unique identifier in the format REGION:GUID. (pattern: <code>[\w-]+:[0-9a-f-]+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_id | select | region | Generates (or retrieves) IdentityID. Supplying multiple logins will create an implicit linked account. This is a public API. You do not need any credentials to call this API. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_id
Generates (or retrieves) IdentityID. Supplying multiple logins will create an implicit linked account. This is a public API. You do not need any credentials to call this API.
SELECT
identity_id
FROM aws.cognito_identity.ids
WHERE region = '{{ region }}' -- required
;