interface DataCellsFilterReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.LakeFormation.DataCellsFilterReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslakeformation#DataCellsFilterReference |
Java | software.amazon.awscdk.services.lakeformation.DataCellsFilterReference |
Python | aws_cdk.aws_lakeformation.DataCellsFilterReference |
TypeScript | aws-cdk-lib » aws_lakeformation » DataCellsFilterReference |
A reference to a DataCellsFilter resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lakeformation as lakeformation } from 'aws-cdk-lib';
const dataCellsFilterReference: lakeformation.DataCellsFilterReference = {
databaseName: 'databaseName',
dataCellsFilterName: 'dataCellsFilterName',
tableCatalogId: 'tableCatalogId',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The Name of the DataCellsFilter resource. |
| database | string | The DatabaseName of the DataCellsFilter resource. |
| table | string | The TableCatalogId of the DataCellsFilter resource. |
| table | string | The TableName of the DataCellsFilter resource. |
dataCellsFilterName
Type:
string
The Name of the DataCellsFilter resource.
databaseName
Type:
string
The DatabaseName of the DataCellsFilter resource.
tableCatalogId
Type:
string
The TableCatalogId of the DataCellsFilter resource.
tableName
Type:
string
The TableName of the DataCellsFilter resource.

.NET
Go
Java
Python
TypeScript