CreateUserResponse

CreateUserResponse schema from AWS IAM Identity Center

Access ControlAuthenticationIdentity ManagementSingle Sign-On

Properties

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

JSON Schema

identitystore-create-user-response-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-create-user-response-schema.json",
  "title": "CreateUserResponse",
  "description": "CreateUserResponse schema from AWS IAM Identity Center",
  "type": "object",
  "properties": {
    "UserId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceId"
        },
        {
          "description": "The identifier of the newly created user in the identity store."
        }
      ]
    },
    "IdentityStoreId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityStoreId"
        },
        {
          "description": "The globally unique identifier for the identity store."
        }
      ]
    }
  },
  "required": [
    "UserId",
    "IdentityStoreId"
  ]
}