columnFamilies property

List<BigtableColumnFamily>? columnFamilies
getter/setter pair

List of column families to expose in the table schema along with their types.

This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the 'type' field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable.

Optional.

Implementation

core.List<BigtableColumnFamily>? columnFamilies;