TableSchemaDefinition constructor
const
TableSchemaDefinition({
- Input<
List< ? clusteringKeys,TableSchemaDefinitionClusteringKey> ?> - required Input<
List< columns,TableSchemaDefinitionColumn> > - required Input<
List< partitionKeys,TableSchemaDefinitionPartitionKey> > - Input<
List< ? staticColumns,TableSchemaDefinitionStaticColumn> ?>
Creates a new TableSchemaDefinition.
clusteringKeys The columns that are part of the clustering key of the table.
columns The regular columns of the table.
partitionKeys The columns that are part of the partition key of the table .
staticColumns The columns that have been defined as STATIC. Static columns store values that are shared by all rows in the same partition.
Implementation
const TableSchemaDefinition({
this.clusteringKeys,
required this.columns,
required this.partitionKeys,
this.staticColumns,
});