interface DataCellsFilterResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LakeFormation.Mixins.CfnPrincipalPermissionsPropsMixin.DataCellsFilterResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslakeformation/mixins#CfnPrincipalPermissionsPropsMixin_DataCellsFilterResourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.lakeformation.mixins.CfnPrincipalPermissionsPropsMixin.DataCellsFilterResourceProperty |
Python | aws_cdk.mixins_preview.aws_lakeformation.mixins.CfnPrincipalPermissionsPropsMixin.DataCellsFilterResourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lakeformation » mixins » CfnPrincipalPermissionsPropsMixin » DataCellsFilterResourceProperty |
A structure that describes certain columns on certain rows.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as lakeformation_mixins } from '@aws-cdk/mixins-preview/aws-lakeformation';
const dataCellsFilterResourceProperty: lakeformation_mixins.CfnPrincipalPermissionsPropsMixin.DataCellsFilterResourceProperty = {
databaseName: 'databaseName',
name: 'name',
tableCatalogId: 'tableCatalogId',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | A database in the Data Catalog . |
| name? | string | The name given by the user to the data filter cell. |
| table | string | The ID of the catalog to which the table belongs. |
| table | string | The name of the table. |
databaseName?
Type:
string
(optional)
A database in the Data Catalog .
name?
Type:
string
(optional)
The name given by the user to the data filter cell.
tableCatalogId?
Type:
string
(optional)
The ID of the catalog to which the table belongs.
tableName?
Type:
string
(optional)
The name of the table.

.NET
Go
Java
Python
TypeScript