/** *

The list of errors returned when errors are encountered during the BatchSuspendUser, BatchUnsuspendUser, or BatchUpdateUser actions. This includes user IDs, error codes, and error messages.

*/ export interface _UserError { /** *

The user ID for which the action failed.

*/ UserId?: string; /** *

The error code.

*/ ErrorCode?: "Unauthorized" | "Forbidden" | "NotFound" | "BadRequest" | "Conflict" | "ServiceFailure" | "ServiceUnavailable" | "Unprocessable" | "Throttled" | "PreconditionFailed" | string; /** *

The error message.

*/ ErrorMessage?: string; } export declare type _UnmarshalledUserError = _UserError;