DataCellsFilterReference
- class aws_cdk.interfaces.aws_lakeformation.DataCellsFilterReference(*, database_name, data_cells_filter_name, table_catalog_id, table_name)
Bases:
objectA reference to a DataCellsFilter resource.
- Parameters:
database_name (
str) – The DatabaseName of the DataCellsFilter resource.data_cells_filter_name (
str) – The Name of the DataCellsFilter resource.table_catalog_id (
str) – The TableCatalogId of the DataCellsFilter resource.table_name (
str) – The TableName of the DataCellsFilter resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_lakeformation as interfaces_lakeformation data_cells_filter_reference = interfaces_lakeformation.DataCellsFilterReference( database_name="databaseName", data_cells_filter_name="dataCellsFilterName", table_catalog_id="tableCatalogId", table_name="tableName" )
Attributes
- data_cells_filter_name
The Name of the DataCellsFilter resource.
- database_name
The DatabaseName of the DataCellsFilter resource.
- table_catalog_id
The TableCatalogId of the DataCellsFilter resource.
- table_name
The TableName of the DataCellsFilter resource.