The input for DeleteUserCommand.

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

Hierarchy (view full)

Properties

ClientRequestToken?: string

Idempotent token used to identify the request to DeleteUser. If you use the same token with multiple DeleteUser 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 from which the UserID needs to be deleted.

UserId: undefined | string

ID for the UserID to be deleted.