Class: Aws::Glue::Types::RenameField
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::RenameField
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies a transform that renames a single data property key.
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. 
- 
  
    
      #source_path  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A JSON path to a variable in the data structure for the source data. 
- 
  
    
      #target_path  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A JSON path to a variable in the data structure for the target data. 
Instance Attribute Details
#inputs ⇒ Array<String>
The data inputs identified by their node names.
| 21308 21309 21310 21311 21312 21313 21314 21315 | # File 'lib/aws-sdk-glue/types.rb', line 21308 class RenameField < Struct.new( :name, :inputs, :source_path, :target_path) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The name of the transform node.
| 21308 21309 21310 21311 21312 21313 21314 21315 | # File 'lib/aws-sdk-glue/types.rb', line 21308 class RenameField < Struct.new( :name, :inputs, :source_path, :target_path) SENSITIVE = [] include Aws::Structure end | 
#source_path ⇒ Array<String>
A JSON path to a variable in the data structure for the source data.
| 21308 21309 21310 21311 21312 21313 21314 21315 | # File 'lib/aws-sdk-glue/types.rb', line 21308 class RenameField < Struct.new( :name, :inputs, :source_path, :target_path) SENSITIVE = [] include Aws::Structure end | 
#target_path ⇒ Array<String>
A JSON path to a variable in the data structure for the target data.
| 21308 21309 21310 21311 21312 21313 21314 21315 | # File 'lib/aws-sdk-glue/types.rb', line 21308 class RenameField < Struct.new( :name, :inputs, :source_path, :target_path) SENSITIVE = [] include Aws::Structure end |