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.
1312 1313 1314 1315 1316 1317 1318 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1312 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.
1312 1313 1314 1315 1316 1317 1318 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1312 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.
1312 1313 1314 1315 1316 1317 1318 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1312 class FilterCondition < Struct.new( :field, :comparison_operator, :string_value_list) SENSITIVE = [] include Aws::Structure end |