Class: Aws::LakeFormation::Types::FilterCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::FilterCondition
- Defined in:
- gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb
Overview
This structure describes the filtering of columns in a table based on a filter condition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison_operator ⇒ String
The comparison operator used in the filter condition.
-
#field ⇒ String
The field to filter in the filter condition.
-
#string_value_list ⇒ Array<String>
A string with values used in evaluating the filter condition.
Instance Attribute Details
#comparison_operator ⇒ String
The comparison operator used in the filter condition.
1378 1379 1380 1381 1382 1383 1384 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1378 class FilterCondition < Struct.new( :field, :comparison_operator, :string_value_list) SENSITIVE = [] include Aws::Structure end |
#field ⇒ String
The field to filter in the filter condition.
1378 1379 1380 1381 1382 1383 1384 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1378 class FilterCondition < Struct.new( :field, :comparison_operator, :string_value_list) SENSITIVE = [] include Aws::Structure end |
#string_value_list ⇒ Array<String>
A string with values used in evaluating the filter condition.
1378 1379 1380 1381 1382 1383 1384 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1378 class FilterCondition < Struct.new( :field, :comparison_operator, :string_value_list) SENSITIVE = [] include Aws::Structure end |