WriteValidationErrorLevel

@thotnr-aws-accl/custom-app-api / Exports / WriteValidationErrorLevel

Enumeration: WriteValidationErrorLevel

Enum representing the levels of validation errors during write operations. Determines how the system handles errors encountered while writing data.

Table of contents

Enumeration Members

Enumeration Members

BLOCKER

BLOCKER = 3

Blocker: Halts processing immediately if any errors of this type are encountered.

Use this level for critical issues that must be resolved before proceeding.


ERROR

ERROR = 2

Error: Drops records with errors but continues processing the remaining records if there are no "BLOCKER" errors.

Use this level for issues that require skipping specific records but do not halt the operation.


WARN

WARN = 1

Warning: Logs the error as a warning.

  • Processing continues if there are no "BLOCKER" errors.

  • Records with warnings are added to the object.

Use this level for non-critical issues that do not prevent processing.

Last updated