Class: Aws::Glue::Types::SplitFields
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::SplitFields
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies a transform that splits data property keys into two ‘DynamicFrames`. The output is a collection of `DynamicFrames`: one with selected data property keys, and one with the remaining data property keys.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #inputs  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The data inputs identified by their node names. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the transform node. 
- 
  
    
      #paths  ⇒ Array<Array<String>> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A JSON path to a variable in the data structure. 
Instance Attribute Details
#inputs ⇒ Array<String>
The data inputs identified by their node names.
| 23641 23642 23643 23644 23645 23646 23647 | # File 'lib/aws-sdk-glue/types.rb', line 23641 class SplitFields < Struct.new( :name, :inputs, :paths) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The name of the transform node.
| 23641 23642 23643 23644 23645 23646 23647 | # File 'lib/aws-sdk-glue/types.rb', line 23641 class SplitFields < Struct.new( :name, :inputs, :paths) SENSITIVE = [] include Aws::Structure end | 
#paths ⇒ Array<Array<String>>
A JSON path to a variable in the data structure.
| 23641 23642 23643 23644 23645 23646 23647 | # File 'lib/aws-sdk-glue/types.rb', line 23641 class SplitFields < Struct.new( :name, :inputs, :paths) SENSITIVE = [] include Aws::Structure end |