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.
15915 15916 15917 15918 15919 15920 15921 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 15915 class GroupFilters < Struct.new( :group_name, :filters, :logical_operator) SENSITIVE = [] include Aws::Structure end |
#group_name ⇒ String
The name of the filter group.
15915 15916 15917 15918 15919 15920 15921 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 15915 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).
15915 15916 15917 15918 15919 15920 15921 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 15915 class GroupFilters < Struct.new( :group_name, :filters, :logical_operator) SENSITIVE = [] include Aws::Structure end |