InvalidCharHandlingAction

class aws_cdk.aws_glue.InvalidCharHandlingAction(*values)

Bases: Enum

Specifies the action to perform when query results contain invalid UTF-8 character values.

See:

https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_EXTERNAL_TABLE.html#r_CREATE_EXTERNAL_TABLE-parameters - under “TABLE PROPERTIES” > “invalid_char_handling”

Attributes

DISABLED

Doesn’t perform invalid character handling.

DROP_ROW

Replaces each value in the row with null.

FAIL

Cancels queries that return data containing invalid UTF-8 values.

REPLACE

Replaces the invalid character with the replacement character you specify using REPLACEMENT_CHAR.

SET_TO_NULL

Replaces invalid UTF-8 values with null.