The input for CreateUserCommand.

interface CreateUserCommandInput {
    ClientRequestToken?: string;
    CollectionId: undefined | string;
    UserId: undefined | string;
}

Hierarchy (view full)

Properties

ClientRequestToken?: string

Idempotent token used to identify the request to CreateUser. If you use the same token with multiple CreateUser requests, the same response is returned. Use ClientRequestToken to prevent the same request from being processed more than once.

CollectionId: undefined | string

The ID of an existing collection to which the new UserID needs to be created.

UserId: undefined | string

ID for the UserID to be created. This ID needs to be unique within the collection.