Amazon IAM Identity Center · JSON Structure

Identitystore External Id Structure

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

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

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

Properties

Issuer Id

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-external-id-structure.json",
  "name": "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"
  ]
}