TablePropertyEntry
- class aws_cdk.aws_s3tables_alpha.TablePropertyEntry(*, key, value)
Bases:
object(experimental) A single table property key-value pair for Iceberg table configuration.
- Parameters:
key (
str) – (experimental) The property key.value (
str) – (experimental) The property value.
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_s3tables_alpha as s3tables_alpha table_property_entry = s3tables_alpha.TablePropertyEntry( key="key", value="value" )
Attributes
- key
(experimental) The property key.
- Stability:
experimental
- value
(experimental) The property value.
- Stability:
experimental