Enum InvalidCharHandlingAction

java.lang.Object
java.lang.Enum<InvalidCharHandlingAction>
software.amazon.awscdk.services.glue.alpha.InvalidCharHandlingAction
All Implemented Interfaces:
Serializable, Comparable<InvalidCharHandlingAction>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-17T14:54:30.074Z") @Stability(Deprecated) @Deprecated public enum InvalidCharHandlingAction extends Enum<InvalidCharHandlingAction>
Deprecated.
(deprecated) Specifies the action to perform when query results contain invalid UTF-8 character values.

See Also:
  • Enum Constant Details

    • DISABLED

      @Stability(Deprecated) @Deprecated public static final InvalidCharHandlingAction DISABLED
      Deprecated.
      (deprecated) Doesn't perform invalid character handling.
    • FAIL

      @Stability(Deprecated) @Deprecated public static final InvalidCharHandlingAction FAIL
      Deprecated.
      (deprecated) Cancels queries that return data containing invalid UTF-8 values.
    • SET_TO_NULL

      @Stability(Deprecated) @Deprecated public static final InvalidCharHandlingAction SET_TO_NULL
      Deprecated.
      (deprecated) Replaces invalid UTF-8 values with null.
    • DROP_ROW

      @Stability(Deprecated) @Deprecated public static final InvalidCharHandlingAction DROP_ROW
      Deprecated.
      (deprecated) Replaces each value in the row with null.
    • REPLACE

      @Stability(Deprecated) @Deprecated public static final InvalidCharHandlingAction REPLACE
      Deprecated.
      (deprecated) Replaces the invalid character with the replacement character you specify using REPLACEMENT_CHAR.
  • Method Details

    • values

      public static InvalidCharHandlingAction[] values()
      Deprecated.
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static InvalidCharHandlingAction valueOf(String name)
      Deprecated.
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null