Skip to main content

ids

Creates, updates, deletes, gets or lists an ids resource.

Overview

Nameids
TypeResource
Idaws.cognito_identity.ids

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
identity_idstringA unique identifier in the format REGION:GUID. (pattern: <code>[\w-]+:[0-9a-f-]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_idselectregionGenerates (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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;