All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awscdk.services.glue.alpha.ColumnCountMismatchHandlingAction Maven / Gradle / Ivy

package software.amazon.awscdk.services.glue.alpha;

/**
 * (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 https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_EXTERNAL_TABLE.html#r_CREATE_EXTERNAL_TABLE-parameters - under _"TABLE PROPERTIES"_ > _"column_count_mismatch_handling"_ */ @javax.annotation.Generated(value = "jsii-pacmak/1.104.0 (build e79254c)", date = "2024-11-15T10:25:09.316Z") @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.glue.alpha.$Module.class, fqn = "@aws-cdk/aws-glue-alpha.ColumnCountMismatchHandlingAction") public enum ColumnCountMismatchHandlingAction { /** * (experimental) Column count mismatch handling is turned off. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) DISABLED, /** * (experimental) Fail the query if the column count mismatch is detected. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) FAIL, /** * (experimental) Fill missing values with NULL and ignore the additional values in each row. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) SET_TO_NULL, /** * (experimental) Drop all rows that contain column count mismatch error from the scan. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) DROP_ROW, }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy