Class: Aws::Glue::Types::GroupFilters
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::GroupFilters
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Specifies a group of filters with a logical operator that determines how the filters are combined to evaluate routing conditions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::FilterExpression>
A list of filter expressions that define the conditions for this group.
-
#group_name ⇒ String
The name of the filter group.
-
#logical_operator ⇒ String
The logical operator used to combine the filters in this group.
Instance Attribute Details
#filters ⇒ Array<Types::FilterExpression>
A list of filter expressions that define the conditions for this group.
15997 15998 15999 16000 16001 16002 16003 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 15997 class GroupFilters < Struct.new( :group_name, :filters, :logical_operator) SENSITIVE = [] include Aws::Structure end |
#group_name ⇒ String
The name of the filter group.
15997 15998 15999 16000 16001 16002 16003 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 15997 class GroupFilters < Struct.new( :group_name, :filters, :logical_operator) SENSITIVE = [] include Aws::Structure end |
#logical_operator ⇒ String
The logical operator used to combine the filters in this group. Determines whether all filters must match (AND) or any filter can match (OR).
15997 15998 15999 16000 16001 16002 16003 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 15997 class GroupFilters < Struct.new( :group_name, :filters, :logical_operator) SENSITIVE = [] include Aws::Structure end |