MDAA TS Docs
    Preparing search index...

    Configuration for an individual Iceberg table within a namespace.

    interface TableConfig {
        accessPolicies?: string[];
        partitions?: IcebergPartitionDef[];
        schema: TableSchemaConfig;
        sortOrder?: IcebergSortOrderDef[];
    }
    Index

    Properties

    accessPolicies?: string[]

    Table-level access policies. Additive: add table-scoped grants on top of bucket-level policies; they cannot narrow or override access granted at the bucket scope.

    partitions?: IcebergPartitionDef[]

    Partition specifications for the table.

    Table schema with column definitions.

    sortOrder?: IcebergSortOrderDef[]

    Sort order specifications for the table.