Class: Aws::Glue::Types::Route
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Route
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Specifies a route node that directs data to different output paths based on defined filtering conditions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_filters_list ⇒ Array<Types::GroupFilters>
A list of group filters that define the routing conditions and criteria for directing data to different output paths.
-
#inputs ⇒ Array<String>
The input connection for the route node.
-
#name ⇒ String
The name of the route node.
Instance Attribute Details
#group_filters_list ⇒ Array<Types::GroupFilters>
A list of group filters that define the routing conditions and criteria for directing data to different output paths.
22391 22392 22393 22394 22395 22396 22397 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 22391 class Route < Struct.new( :name, :inputs, :group_filters_list) SENSITIVE = [] include Aws::Structure end |