software.amazon.awscdk.services.glue.alpha.NumericOverflowHandlingAction Maven / Gradle / Ivy
package software.amazon.awscdk.services.glue.alpha;
/**
* (experimental) Specifies the action to perform when ORC data contains an integer (for example, BIGINT or int64) that is larger than the column definition (for example, SMALLINT or int16).
*
* @see https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_EXTERNAL_TABLE.html#r_CREATE_EXTERNAL_TABLE-parameters - under _"TABLE PROPERTIES"_ > _"numeric_overflow_handling"_
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.104.0 (build e79254c)", date = "2024-11-15T10:25:09.350Z")
@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.NumericOverflowHandlingAction")
public enum NumericOverflowHandlingAction {
/**
* (experimental) Invalid character handling is turned off.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
DISABLED,
/**
* (experimental) Cancel the query when the data includes invalid characters.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
FAIL,
/**
* (experimental) Set invalid characters to null.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
SET_TO_NULL,
/**
* (experimental) Set each value in the row to null.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
DROP_ROW,
}