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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSet.FilterOperationProperty
static final class
An 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.
-
builder
-