Amazon IAM Identity Center · JSON Structure

Identitystore Alternate Identifier Structure

A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute.

Type: object Properties: 2
Access ControlAuthenticationIdentity ManagementSingle Sign-On

AlternateIdentifier is a JSON Structure definition published by Amazon IAM Identity Center, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ExternalId UniqueAttribute

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-identity-center/refs/heads/main/json-structure/identitystore-alternate-identifier-structure.json",
  "name": "AlternateIdentifier",
  "description": "A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute.",
  "type": "object",
  "properties": {
    "ExternalId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExternalId"
        },
        {
          "description": "The identifier issued to this resource by an external identity provider."
        }
      ]
    },
    "UniqueAttribute": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UniqueAttribute"
        },
        {
          "description": "An entity attribute that's unique to a specific entity."
        }
      ]
    }
  }
}