You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::LakeFormation::Types::FilterCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::FilterCondition
- Defined in:
- (unknown)
Overview
Note:
When passing FilterCondition as input to an Aws::Client method, you can use a vanilla Hash:
{
field: "RESOURCE_ARN", # accepts RESOURCE_ARN, ROLE_ARN, LAST_MODIFIED
comparison_operator: "EQ", # accepts EQ, NE, LE, LT, GE, GT, CONTAINS, NOT_CONTAINS, BEGINS_WITH, IN, BETWEEN
string_value_list: ["StringValue"],
}
This structure describes the filtering of columns in a table based on a filter condition.
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.
Possible values:
- EQ
- NE
- LE
- LT
- GE
- GT
- CONTAINS
- NOT_CONTAINS
- BEGINS_WITH
- IN
- BETWEEN
#field ⇒ String
The field to filter in the filter condition.
Possible values:
- RESOURCE_ARN
- ROLE_ARN
- LAST_MODIFIED
#string_value_list ⇒ Array<String>
A string with values used in evaluating the filter condition.