interface CfnDataCellsFilterMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LakeFormation.Mixins.CfnDataCellsFilterMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslakeformation/mixins#CfnDataCellsFilterMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.lakeformation.mixins.CfnDataCellsFilterMixinProps |
Python | aws_cdk.mixins_preview.aws_lakeformation.mixins.CfnDataCellsFilterMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_lakeformation » mixins » CfnDataCellsFilterMixinProps |
Properties for CfnDataCellsFilterPropsMixin.
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';
declare const allRowsWildcard: any;
const cfnDataCellsFilterMixinProps: lakeformation_mixins.CfnDataCellsFilterMixinProps = {
columnNames: ['columnNames'],
columnWildcard: {
excludedColumnNames: ['excludedColumnNames'],
},
databaseName: 'databaseName',
name: 'name',
rowFilter: {
allRowsWildcard: allRowsWildcard,
filterExpression: 'filterExpression',
},
tableCatalogId: 'tableCatalogId',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | string[] | An array of UTF-8 strings. |
| column | IResolvable | Column | A wildcard with exclusions. |
| database | string | UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern . |
| name? | string | UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern . |
| row | IResolvable | Row | A PartiQL predicate. |
| table | string | Catalog id string, not less than 1 or more than 255 bytes long, matching the single-line string pattern . |
| table | string | UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern . |
columnNames?
Type:
string[]
(optional)
An array of UTF-8 strings.
A list of column names.
columnWildcard?
Type:
IResolvable | Column
(optional)
A wildcard with exclusions.
You must specify either a ColumnNames list or the ColumnWildCard .
databaseName?
Type:
string
(optional)
UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .
A database in the Data Catalog .
name?
Type:
string
(optional)
UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .
The name given by the user to the data filter cell.
rowFilter?
Type:
IResolvable | Row
(optional)
A PartiQL predicate.
tableCatalogId?
Type:
string
(optional)
Catalog id string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .
The ID of the catalog to which the table belongs.
tableName?
Type:
string
(optional)
UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .
A table in the database.

.NET
Go
Java
Python
TypeScript