Class: Aws::Glue::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Filter
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies a transform that splits a dataset into two, based on a filter condition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::FilterExpression>
Specifies a filter expression.
-
#inputs ⇒ Array<String>
The data inputs identified by their node names.
-
#logical_operator ⇒ String
The operator used to filter rows by comparing the key value to a specified value.
-
#name ⇒ String
The name of the transform node.
Instance Attribute Details
#filters ⇒ Array<Types::FilterExpression>
Specifies a filter expression.
10755 10756 10757 10758 10759 10760 10761 10762 |
# File 'lib/aws-sdk-glue/types.rb', line 10755 class Filter < Struct.new( :name, :inputs, :logical_operator, :filters) SENSITIVE = [] include Aws::Structure end |
#inputs ⇒ Array<String>
The data inputs identified by their node names.
10755 10756 10757 10758 10759 10760 10761 10762 |
# File 'lib/aws-sdk-glue/types.rb', line 10755 class Filter < Struct.new( :name, :inputs, :logical_operator, :filters) SENSITIVE = [] include Aws::Structure end |
#logical_operator ⇒ String
The operator used to filter rows by comparing the key value to a specified value.
10755 10756 10757 10758 10759 10760 10761 10762 |
# File 'lib/aws-sdk-glue/types.rb', line 10755 class Filter < Struct.new( :name, :inputs, :logical_operator, :filters) SENSITIVE = [] include Aws::Structure end |