Enum ColumnCountMismatchHandlingAction
java.lang.Object
java.lang.Enum<ColumnCountMismatchHandlingAction>
software.amazon.awscdk.services.glue.alpha.ColumnCountMismatchHandlingAction
- All Implemented Interfaces:
Serializable
,Comparable<ColumnCountMismatchHandlingAction>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:11.549Z")
@Stability(Experimental)
public enum ColumnCountMismatchHandlingAction
extends Enum<ColumnCountMismatchHandlingAction>
(experimental) Identifies if the file contains less or more values for a row than the number of columns specified in the external table definition.
This property is only available for an uncompressed text file format.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription(experimental) Column count mismatch handling is turned off.(experimental) Drop all rows that contain column count mismatch error from the scan.(experimental) Fail the query if the column count mismatch is detected.(experimental) Fill missing values with NULL and ignore the additional values in each row. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static ColumnCountMismatchHandlingAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DISABLED
(experimental) Column count mismatch handling is turned off. -
FAIL
(experimental) Fail the query if the column count mismatch is detected. -
SET_TO_NULL
(experimental) Fill missing values with NULL and ignore the additional values in each row. -
DROP_ROW
(experimental) Drop all rows that contain column count mismatch error from the scan.
-
-
Method Details
-
values
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
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 nameNullPointerException
- if the argument is null
-