Class: Aws::EntityResolution::Types::InputSource
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::EntityResolution::Types::InputSource
 
- Defined in:
- gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb
Overview
An object containing inputSourceARN, schemaName, and
applyNormalization.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #apply_normalization  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Normalizes the attributes defined in the schema in the input data. 
- 
  
    
      #input_source_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An Glue table Amazon Resource Name (ARN) for the input source table. 
- 
  
    
      #schema_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the schema to be retrieved. 
Instance Attribute Details
#apply_normalization ⇒ Boolean
Normalizes the attributes defined in the schema in the input data.
For example, if an attribute has an AttributeType of
PHONE_NUMBER, and the data in the input table is in a format of
1234567890, Entity Resolution will normalize this field in the
output to (123)-456-7890.
| 1948 1949 1950 1951 1952 1953 1954 | # File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 1948 class InputSource < Struct.new( :input_source_arn, :schema_name, :apply_normalization) SENSITIVE = [] include Aws::Structure end | 
#input_source_arn ⇒ String
An Glue table Amazon Resource Name (ARN) for the input source table.
| 1948 1949 1950 1951 1952 1953 1954 | # File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 1948 class InputSource < Struct.new( :input_source_arn, :schema_name, :apply_normalization) SENSITIVE = [] include Aws::Structure end | 
#schema_name ⇒ String
The name of the schema to be retrieved.
| 1948 1949 1950 1951 1952 1953 1954 | # File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 1948 class InputSource < Struct.new( :input_source_arn, :schema_name, :apply_normalization) SENSITIVE = [] include Aws::Structure end |