interface TablePropertyEntry
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.Alpha.TablePropertyEntry |
Java | software.amazon.awscdk.services.s3tables.alpha.TablePropertyEntry |
Python | aws_cdk.aws_s3tables_alpha.TablePropertyEntry |
TypeScript (source) | @aws-cdk/aws-s3tables-alpha ยป TablePropertyEntry |
A single table property key-value pair for Iceberg table configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as s3tables_alpha from '@aws-cdk/aws-s3tables-alpha';
const tablePropertyEntry: s3tables_alpha.TablePropertyEntry = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The property key. |
| value | string | The property value. |
key
Type:
string
The property key.
value
Type:
string
The property value.

.NET
Java
Python
TypeScript (