Interface CfnDataCellsFilter.RowFilterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataCellsFilter.RowFilterProperty.Jsii$Proxy
Enclosing class:
CfnDataCellsFilter

@Stability(Stable) public static interface CfnDataCellsFilter.RowFilterProperty extends software.amazon.jsii.JsiiSerializable
A PartiQL predicate.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lakeformation.*;
 Object allRowsWildcard;
 RowFilterProperty rowFilterProperty = RowFilterProperty.builder()
         .allRowsWildcard(allRowsWildcard)
         .filterExpression("filterExpression")
         .build();