ExternalId

The identifier issued to this resource by an external identity provider.

Access ControlAuthenticationIdentity ManagementSingle Sign-On

Properties

Name Type Description
Issuer object
Id object
View JSON Schema on GitHub

JSON Schema

identitystore-external-id-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-identity-center/refs/heads/main/json-schema/identitystore-external-id-schema.json",
  "title": "ExternalId",
  "description": "The identifier issued to this resource by an external identity provider.",
  "type": "object",
  "properties": {
    "Issuer": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExternalIdIssuer"
        },
        {
          "description": "The issuer for an external identifier."
        }
      ]
    },
    "Id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExternalIdIdentifier"
        },
        {
          "description": "The identifier issued to this resource by an external identity provider."
        }
      ]
    }
  },
  "required": [
    "Issuer",
    "Id"
  ]
}