interface RowFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.LakeFormation.CfnDataCellsFilter.RowFilterProperty |
Java | software.amazon.awscdk.services.lakeformation.CfnDataCellsFilter.RowFilterProperty |
Python | aws_cdk.aws_lakeformation.CfnDataCellsFilter.RowFilterProperty |
TypeScript | @aws-cdk/aws-lakeformation » CfnDataCellsFilter » RowFilterProperty |
A PartiQL predicate.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as lakeformation from '@aws-cdk/aws-lakeformation';
declare const allRowsWildcard: any;
const rowFilterProperty: lakeformation.CfnDataCellsFilter.RowFilterProperty = {
allRowsWildcard: allRowsWildcard,
filterExpression: 'filterExpression',
};
Properties
| Name | Type | Description |
|---|---|---|
| all | any | A wildcard for all rows. |
| filter | string | A filter expression. |
allRowsWildcard?
Type:
any
(optional)
A wildcard for all rows.
filterExpression?
Type:
string
(optional)
A filter expression.

.NET
Java
Python
TypeScript