enum InvalidCharHandlingAction
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Glue.Alpha.InvalidCharHandlingAction | 
  Go | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#InvalidCharHandlingAction | 
  Java | software.amazon.awscdk.services.glue.alpha.InvalidCharHandlingAction | 
  Python | aws_cdk.aws_glue_alpha.InvalidCharHandlingAction | 
  TypeScript (source) | @aws-cdk/aws-glue-alpha ยป InvalidCharHandlingAction | 
Specifies the action to perform when query results contain invalid UTF-8 character values.
See also: [https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_EXTERNAL_TABLE.html#r_CREATE_EXTERNAL_TABLE-parameters - under "TABLE PROPERTIES" > "invalid_char_handling"](https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_EXTERNAL_TABLE.html#r_CREATE_EXTERNAL_TABLE-parameters - under "TABLE PROPERTIES" > "invalid_char_handling")
Members
| Name | Description | 
|---|---|
| DISABLED | Doesn't perform invalid character handling. | 
| FAIL | Cancels queries that return data containing invalid UTF-8 values. | 
| SET_TO_NULL | Replaces invalid UTF-8 values with null. | 
| DROP_ROW | Replaces each value in the row with null. | 
| REPLACE | Replaces the invalid character with the replacement character you specify using REPLACEMENT_CHAR. | 
DISABLED
Doesn't perform invalid character handling.
FAIL
Cancels queries that return data containing invalid UTF-8 values.
SET_TO_NULL
Replaces invalid UTF-8 values with null.
DROP_ROW
Replaces each value in the row with null.
REPLACE
Replaces the invalid character with the replacement character you specify using REPLACEMENT_CHAR.

 .NET
 Go
 Java
 Python
 TypeScript (