Interface InputSource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InputSource.Builder,InputSource>,SdkBuilder<InputSource.Builder,InputSource>,SdkPojo
- Enclosing class:
- InputSource
public static interface InputSource.Builder extends SdkPojo, CopyableBuilder<InputSource.Builder,InputSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputSource.BuilderapplyNormalization(Boolean applyNormalization)Normalizes the attributes defined in the schema in the input data.InputSource.BuilderinputSourceARN(String inputSourceARN)An Glue table Amazon Resource Name (ARN) for the input source table.InputSource.BuilderschemaName(String schemaName)The name of the schema to be retrieved.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
applyNormalization
InputSource.Builder applyNormalization(Boolean applyNormalization)
Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an
AttributeTypeofPHONE_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.- Parameters:
applyNormalization- Normalizes the attributes defined in the schema in the input data. For example, if an attribute has anAttributeTypeofPHONE_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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputSourceARN
InputSource.Builder inputSourceARN(String inputSourceARN)
An Glue table Amazon Resource Name (ARN) for the input source table.
- Parameters:
inputSourceARN- An Glue table Amazon Resource Name (ARN) for the input source table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemaName
InputSource.Builder schemaName(String schemaName)
The name of the schema to be retrieved.
- Parameters:
schemaName- The name of the schema to be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-