Class: Aws::QuickSight::Types::FilterOperation
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::FilterOperation
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
A transform operation that filters rows based on a condition.
Constant Summary collapse
- SENSITIVE =
[:condition_expression]
Instance Attribute Summary collapse
-
#condition_expression ⇒ String
An expression that must evaluate to a Boolean value.
Instance Attribute Details
#condition_expression ⇒ String
An expression that must evaluate to a Boolean value. Rows for which the expression evaluates to true are kept in the dataset.
12646 12647 12648 12649 12650 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 12646 class FilterOperation < Struct.new( :condition_expression) SENSITIVE = [:condition_expression] include Aws::Structure end |