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.
1739 1740 1741 1742 1743 1744 1745 |
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 1739 class InputSource < Struct.new( :apply_normalization, :input_source_arn, :schema_name) SENSITIVE = [] include Aws::Structure end |
#input_source_arn ⇒ String
An Glue table Amazon Resource Name (ARN) for the input source table.
1739 1740 1741 1742 1743 1744 1745 |
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 1739 class InputSource < Struct.new( :apply_normalization, :input_source_arn, :schema_name) SENSITIVE = [] include Aws::Structure end |
#schema_name ⇒ String
The name of the schema to be retrieved.
1739 1740 1741 1742 1743 1744 1745 |
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 1739 class InputSource < Struct.new( :apply_normalization, :input_source_arn, :schema_name) SENSITIVE = [] include Aws::Structure end |