Interface CfnDataSet.FilterOperationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.FilterOperationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.FilterOperationProperty
extends software.amazon.jsii.JsiiSerializable
A transform operation that filters rows based on a condition.
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.quicksight.*;
FilterOperationProperty filterOperationProperty = FilterOperationProperty.builder()
.conditionExpression("conditionExpression")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.FilterOperationPropertystatic final classAn implementation forCfnDataSet.FilterOperationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConditionExpression
An expression that must evaluate to a Boolean value.Rows for which the expression evaluates to true are kept in the dataset.
- See Also:
-
builder
-