DescribeUserRequest

DescribeUserRequest schema from AWS IAM Identity Center

Access ControlAuthenticationIdentity ManagementSingle Sign-On

Properties

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

JSON Schema

identitystore-describe-user-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-describe-user-request-schema.json",
  "title": "DescribeUserRequest",
  "description": "DescribeUserRequest schema from AWS IAM Identity Center",
  "type": "object",
  "properties": {
    "IdentityStoreId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityStoreId"
        },
        {
          "description": "The globally unique identifier for the identity store, such as <code>d-1234567890</code>. In this example, <code>d-</code> is a fixed prefix, and <code>1234567890</code> is a randomly generated string that contains numbers and lower case letters. This value is generated at the time that a new identity store is created."
        }
      ]
    },
    "UserId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceId"
        },
        {
          "description": "The identifier for a user in the identity store."
        }
      ]
    }
  },
  "required": [
    "IdentityStoreId",
    "UserId"
  ]
}