Interface OutputSource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OutputSource.Builder,OutputSource>,SdkBuilder<OutputSource.Builder,OutputSource>,SdkPojo
- Enclosing class:
- OutputSource
public static interface OutputSource.Builder extends SdkPojo, CopyableBuilder<OutputSource.Builder,OutputSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OutputSource.BuilderapplyNormalization(Boolean applyNormalization)Normalizes the attributes defined in the schema in the input data.OutputSource.BuilderkmsArn(String kmsArn)Customer KMS ARN for encryption at rest.OutputSource.Builderoutput(Collection<OutputAttribute> output)A list ofOutputAttributeobjects, each of which have the fieldsNameandHashed.OutputSource.Builderoutput(Consumer<OutputAttribute.Builder>... output)A list ofOutputAttributeobjects, each of which have the fieldsNameandHashed.OutputSource.Builderoutput(OutputAttribute... output)A list ofOutputAttributeobjects, each of which have the fieldsNameandHashed.OutputSource.BuilderoutputS3Path(String outputS3Path)The S3 path to which Entity Resolution will write the output table.-
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
-
kmsArn
OutputSource.Builder kmsArn(String kmsArn)
Customer KMS ARN for encryption at rest. If not provided, system will use an Entity Resolution managed KMS key.
- Parameters:
kmsArn- Customer KMS ARN for encryption at rest. If not provided, system will use an Entity Resolution managed KMS key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applyNormalization
OutputSource.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.
-
output
OutputSource.Builder output(Collection<OutputAttribute> output)
A list of
OutputAttributeobjects, each of which have the fieldsNameandHashed. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.- Parameters:
output- A list ofOutputAttributeobjects, each of which have the fieldsNameandHashed. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
output
OutputSource.Builder output(OutputAttribute... output)
A list of
OutputAttributeobjects, each of which have the fieldsNameandHashed. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.- Parameters:
output- A list ofOutputAttributeobjects, each of which have the fieldsNameandHashed. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
output
OutputSource.Builder output(Consumer<OutputAttribute.Builder>... output)
A list of
This is a convenience method that creates an instance of theOutputAttributeobjects, each of which have the fieldsNameandHashed. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.OutputAttribute.Builderavoiding the need to create one manually viaOutputAttribute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#output(List.) - Parameters:
output- a consumer that will call methods onOutputAttribute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#output(java.util.Collection)
-
outputS3Path
OutputSource.Builder outputS3Path(String outputS3Path)
The S3 path to which Entity Resolution will write the output table.
- Parameters:
outputS3Path- The S3 path to which Entity Resolution will write the output table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-