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