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.
15850 15851 15852 15853 15854 15855 15856 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 15850 class GroupFilters < Struct.new( :group_name, :filters, :logical_operator) SENSITIVE = [] include Aws::Structure end |
#group_name ⇒ String
The name of the filter group.
15850 15851 15852 15853 15854 15855 15856 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 15850 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).
15850 15851 15852 15853 15854 15855 15856 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 15850 class GroupFilters < Struct.new( :group_name, :filters, :logical_operator) SENSITIVE = [] include Aws::Structure end |