InvalidCharHandlingAction

class aws_cdk.aws_glue_alpha.InvalidCharHandlingAction(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)

Bases: Enum

(experimental) 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”

Stability:

experimental

Attributes

DISABLED

(experimental) Doesn’t perform invalid character handling.

Stability:

experimental

DROP_ROW

(experimental) Replaces each value in the row with null.

Stability:

experimental

FAIL

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

Stability:

experimental

REPLACE

(experimental) Replaces the invalid character with the replacement character you specify using REPLACEMENT_CHAR.

Stability:

experimental

SET_TO_NULL

(experimental) Replaces invalid UTF-8 values with null.

Stability:

experimental