GetUserIdRequest

GetUserIdRequest schema from AWS IAM Identity Center

Access ControlAuthenticationIdentity ManagementSingle Sign-On

Properties

Name Type Description
IdentityStoreId object
AlternateIdentifier object
View JSON Schema on GitHub

JSON Schema

identitystore-get-user-id-request-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-get-user-id-request-schema.json",
  "title": "GetUserIdRequest",
  "description": "GetUserIdRequest schema from AWS IAM Identity Center",
  "type": "object",
  "properties": {
    "IdentityStoreId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityStoreId"
        },
        {
          "description": "The globally unique identifier for the identity store."
        }
      ]
    },
    "AlternateIdentifier": {
      "allOf": [
        {
          "$ref": "#/components/schemas/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. For the unique attribute, the only valid paths are <code>userName</code> and <code>emails.value</code>."
        }
      ]
    }
  },
  "required": [
    "IdentityStoreId",
    "AlternateIdentifier"
  ]
}