S3TableProps
- class aws_cdk.aws_glue_alpha.S3TableProps(*, columns, database, data_format, compressed=None, description=None, enable_partition_filtering=None, parameters=None, partition_indexes=None, partition_keys=None, storage_parameters=None, stored_as_sub_directories=None, table_name=None, bucket=None, encryption=None, encryption_key=None, s3_prefix=None)
Bases:
TableBaseProps
- Parameters:
columns (
Sequence
[Union
[Column
,Dict
[str
,Any
]]]) – (experimental) Columns of the table.database (
IDatabase
) – (experimental) Database in which to store the table.data_format (
DataFormat
) – (experimental) Storage type of the table’s data.compressed (
Optional
[bool
]) – (experimental) Indicates whether the table’s data is compressed or not. Default: falsedescription (
Optional
[str
]) – (experimental) Description of the table. Default: generatedenable_partition_filtering (
Optional
[bool
]) – (experimental) Enables partition filtering. Default: - The parameter is not definedparameters (
Optional
[Mapping
[str
,str
]]) – (experimental) The key/value pairs define properties associated with the table. The key/value pairs that are allowed to be submitted are not limited, however their functionality is not guaranteed. Default: - The parameter is not definedpartition_indexes (
Optional
[Sequence
[Union
[PartitionIndex
,Dict
[str
,Any
]]]]) – (experimental) Partition indexes on the table. A maximum of 3 indexes are allowed on a table. Keys in the index must be part of the table’s partition keys. Default: table has no partition indexespartition_keys (
Optional
[Sequence
[Union
[Column
,Dict
[str
,Any
]]]]) – (experimental) Partition columns of the table. Default: table is not partitionedstorage_parameters (
Optional
[Sequence
[StorageParameter
]]) – (experimental) The user-supplied properties for the description of the physical storage of this table. These properties help describe the format of the data that is stored within the crawled data sources. The key/value pairs that are allowed to be submitted are not limited, however their functionality is not guaranteed. Some keys will be auto-populated by glue crawlers, however, you can override them by specifying the key and value in this property. Default: - The parameter is not definedstored_as_sub_directories (
Optional
[bool
]) – (experimental) Indicates whether the table data is stored in subdirectories. Default: falsetable_name (
Optional
[str
]) – (experimental) Name of the table. Default: - generated by CDK.bucket (
Optional
[IBucket
]) – (experimental) S3 bucket in which to store data. Default: one is created for youencryption (
Optional
[TableEncryption
]) – (experimental) The kind of encryption to secure the data with. You can only provide this option if you are not explicitly passing in a bucket. If you chooseSSE-KMS
, you can provide an un-managed KMS key withencryptionKey
. If you chooseCSE-KMS
, you must provide an un-managed KMS key withencryptionKey
. Default: BucketEncryption.S3_MANAGEDencryption_key (
Optional
[IKey
]) – (experimental) External KMS key to use for bucket encryption. Theencryption
property must beSSE-KMS
orCSE-KMS
. Default: key is managed by KMS.s3_prefix (
Optional
[str
]) – (experimental) S3 prefix under which table objects are stored. Default: - No prefix. The data will be stored under the root of the bucket.
- Stability:
experimental
- ExampleMetadata:
infused
Example:
# my_database: glue.Database glue.S3Table(self, "MyTable", database=my_database, columns=[glue.Column( name="col1", type=glue.Schema.STRING )], partition_keys=[glue.Column( name="year", type=glue.Schema.SMALL_INT ), glue.Column( name="month", type=glue.Schema.SMALL_INT )], data_format=glue.DataFormat.JSON, enable_partition_filtering=True )
Attributes
- bucket
(experimental) S3 bucket in which to store data.
- Default:
one is created for you
- Stability:
experimental
- columns
(experimental) Columns of the table.
- Stability:
experimental
- compressed
(experimental) Indicates whether the table’s data is compressed or not.
- Default:
false
- Stability:
experimental
- data_format
(experimental) Storage type of the table’s data.
- Stability:
experimental
- database
(experimental) Database in which to store the table.
- Stability:
experimental
- description
(experimental) Description of the table.
- Default:
generated
- Stability:
experimental
- enable_partition_filtering
(experimental) Enables partition filtering.
- Default:
The parameter is not defined
- See:
- Stability:
experimental
- encryption
(experimental) The kind of encryption to secure the data with.
You can only provide this option if you are not explicitly passing in a bucket.
If you choose
SSE-KMS
, you can provide an un-managed KMS key withencryptionKey
. If you chooseCSE-KMS
, you must provide an un-managed KMS key withencryptionKey
.- Default:
BucketEncryption.S3_MANAGED
- Stability:
experimental
- encryption_key
(experimental) External KMS key to use for bucket encryption.
The
encryption
property must beSSE-KMS
orCSE-KMS
.- Default:
key is managed by KMS.
- Stability:
experimental
- parameters
(experimental) The key/value pairs define properties associated with the table.
The key/value pairs that are allowed to be submitted are not limited, however their functionality is not guaranteed.
- Default:
The parameter is not defined
- See:
- Stability:
experimental
- partition_indexes
(experimental) Partition indexes on the table.
A maximum of 3 indexes are allowed on a table. Keys in the index must be part of the table’s partition keys.
- Default:
table has no partition indexes
- Stability:
experimental
- partition_keys
(experimental) Partition columns of the table.
- Default:
table is not partitioned
- Stability:
experimental
- s3_prefix
(experimental) S3 prefix under which table objects are stored.
- Default:
No prefix. The data will be stored under the root of the bucket.
- Stability:
experimental
- storage_parameters
(experimental) The user-supplied properties for the description of the physical storage of this table.
These properties help describe the format of the data that is stored within the crawled data sources.
The key/value pairs that are allowed to be submitted are not limited, however their functionality is not guaranteed.
Some keys will be auto-populated by glue crawlers, however, you can override them by specifying the key and value in this property.
- Default:
The parameter is not defined
- See:
https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_EXTERNAL_TABLE.html#r_CREATE_EXTERNAL_TABLE-parameters - under “TABLE PROPERTIES”
- Stability:
experimental
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 )
- stored_as_sub_directories
(experimental) Indicates whether the table data is stored in subdirectories.
- Default:
false
- Stability:
experimental
- table_name
(experimental) Name of the table.
- Default:
generated by CDK.
- Stability:
experimental