Class: Aws::Glue::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Filter
- Defined in:
- gems/aws-sdk-glue/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.
10743 10744 10745 10746 10747 10748 10749 10750 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 10743 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.
10743 10744 10745 10746 10747 10748 10749 10750 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 10743 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.
10743 10744 10745 10746 10747 10748 10749 10750 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 10743 class Filter < Struct.new( :name, :inputs, :logical_operator, :filters) SENSITIVE = [] include Aws::Structure end |