Class: Aws::Glue::Types::DropDuplicates
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::DropDuplicates
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies a transform that removes rows of repeating data from a data set.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #columns  ⇒ Array<Array<String>> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the columns to be merged or removed if repeating. 
- 
  
    
      #inputs  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The data inputs identified by their node names. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the transform node. 
Instance Attribute Details
#columns ⇒ Array<Array<String>>
The name of the columns to be merged or removed if repeating.
| 9922 9923 9924 9925 9926 9927 9928 | # File 'lib/aws-sdk-glue/types.rb', line 9922 class DropDuplicates < Struct.new( :name, :inputs, :columns) SENSITIVE = [] include Aws::Structure end | 
#inputs ⇒ Array<String>
The data inputs identified by their node names.
| 9922 9923 9924 9925 9926 9927 9928 | # File 'lib/aws-sdk-glue/types.rb', line 9922 class DropDuplicates < Struct.new( :name, :inputs, :columns) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The name of the transform node.
| 9922 9923 9924 9925 9926 9927 9928 | # File 'lib/aws-sdk-glue/types.rb', line 9922 class DropDuplicates < Struct.new( :name, :inputs, :columns) SENSITIVE = [] include Aws::Structure end |