StorageParameters

class aws_cdk.aws_glue_alpha.StorageParameters(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)

Bases: Enum

(experimental) The storage parameter keys that are currently known, this list is not exhaustive and other keys may be used.

Stability:

experimental

ExampleMetadata:

infused

Example:

# glue_database: glue.IDatabase

table = glue.Table(self, "Table",
    storage_parameters=[
        glue.StorageParameter.skip_header_line_count(1),
        glue.StorageParameter.compression_type(glue.CompressionType.GZIP),
        glue.StorageParameter.custom("foo", "bar"),  # Will have no effect
        glue.StorageParameter.custom("separatorChar", ","),  # Will describe the separator char used in the data
        glue.StorageParameter.custom(glue.StorageParameters.WRITE_PARALLEL, "off")
    ],
    # ...
    database=glue_database,
    columns=[glue.Column(
        name="col1",
        type=glue.Schema.STRING
    )],
    data_format=glue.DataFormat.CSV
)

Attributes

COLUMN_COUNT_MISMATCH_HANDLING

(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.

Stability:

experimental

COMPRESSION_TYPE

(experimental) The type of compression used on the table, when the file name does not contain an extension.

This value overrides the compression type specified through the extension.

Stability:

experimental

DATA_CLEANSING_ENABLED

(experimental) Determines whether data handling is on for the table.

Stability:

experimental

INVALID_CHAR_HANDLING

(experimental) Specifies the action to perform when query results contain invalid UTF-8 character values.

Stability:

experimental

NUMERIC_OVERFLOW_HANDLING

(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).

Stability:

experimental

NUM_ROWS

(experimental) A property that sets the numRows value for the table definition.

To explicitly update an external table’s statistics, set the numRows property to indicate the size of the table. Amazon Redshift doesn’t analyze external tables to generate the table statistics that the query optimizer uses to generate a query plan. If table statistics aren’t set for an external table, Amazon Redshift generates a query execution plan based on an assumption that external tables are the larger tables and local tables are the smaller tables.

Stability:

experimental

ORC_SCHEMA_RESOLUTION

(experimental) A property that sets the column mapping type for tables that use ORC data format.

This property is ignored for other data formats.

Stability:

experimental

REPLACEMENT_CHAR

(experimental) Specifies the replacement character to use when you set INVALID_CHAR_HANDLING to REPLACE.

Stability:

experimental

SERIALIZATION_NULL_FORMAT

(experimental) A property that sets number of rows to skip at the beginning of each source file.

Stability:

experimental

SKIP_HEADER_LINE_COUNT

(experimental) The number of rows to skip at the top of a CSV file when the table is being created.

Stability:

experimental

SURPLUS_BYTES_HANDLING

(experimental) Specifies how to handle data being loaded that exceeds the length of the data type defined for columns containing VARBYTE data.

By default, Redshift Spectrum sets the value to null for data that exceeds the width of the column.

Stability:

experimental

SURPLUS_CHAR_HANDLING

(experimental) Specifies how to handle data being loaded that exceeds the length of the data type defined for columns containing VARCHAR, CHAR, or string data.

By default, Redshift Spectrum sets the value to null for data that exceeds the width of the column.

Stability:

experimental

WRITE_KMS_KEY_ID

(experimental) You can specify an AWS Key Management Service key to enable Server–Side Encryption (SSE) for Amazon S3 objects.

Stability:

experimental

WRITE_MAX_FILESIZE_MB

(experimental) A property that sets the maximum size (in MB) of each file written to Amazon S3 by CREATE EXTERNAL TABLE AS.

The size must be a valid integer between 5 and 6200. The default maximum file size is 6,200 MB. This table property also applies to any subsequent INSERT statement into the same external table.

Stability:

experimental

WRITE_PARALLEL

(experimental) A property that sets whether CREATE EXTERNAL TABLE AS should write data in parallel.

When ‘write.parallel’ is set to off, CREATE EXTERNAL TABLE AS writes to one or more data files serially onto Amazon S3. This table property also applies to any subsequent INSERT statement into the same external table.

Stability:

experimental