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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataCellsFilter.RowFilterProperty
static final class
An implementation forCfnDataCellsFilter.RowFilterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllRowsWildcard
A wildcard for all rows. -
getFilterExpression
A filter expression. -
builder
-