Interface GenerateMatchIdRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<GenerateMatchIdRequest.Builder,
,GenerateMatchIdRequest> EntityResolutionRequest.Builder
,SdkBuilder<GenerateMatchIdRequest.Builder,
,GenerateMatchIdRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
GenerateMatchIdRequest
-
Method Summary
Modifier and TypeMethodDescriptionoverrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.processingType
(String processingType) The processing mode that determines how Match IDs are generated and results are saved.processingType
(ProcessingType processingType) The processing mode that determines how Match IDs are generated and results are saved.records
(Collection<Record> records) The records to match.records
(Consumer<Record.Builder>... records) The records to match.The records to match.workflowName
(String workflowName) The name of the rule-based matching workflow.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.entityresolution.model.EntityResolutionRequest.Builder
build
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
workflowName
The name of the rule-based matching workflow.
- Parameters:
workflowName
- The name of the rule-based matching workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
records
The records to match.
- Parameters:
records
- The records to match.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
records
The records to match.
- Parameters:
records
- The records to match.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
records
The records to match.
This is a convenience method that creates an instance of theRecord.Builder
avoiding the need to create one manually viaRecord.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed torecords(List<Record>)
.- Parameters:
records
- a consumer that will call methods onRecord.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
processingType
The processing mode that determines how Match IDs are generated and results are saved. Each mode provides different levels of accuracy, response time, and completeness of results.
If not specified, defaults to
CONSISTENT
.CONSISTENT
: Performs immediate lookup and matching against all existing records, with results saved synchronously. Provides highest accuracy but slower response time.EVENTUAL
(shown as Background in the console): Performs initial match ID lookup or generation immediately, with record updates processed asynchronously in the background. Offers faster initial response time, with complete matching results available later in S3.EVENTUAL_NO_LOOKUP
(shown as Quick ID generation in the console): Generates new match IDs without checking existing matches, with updates processed asynchronously. Provides fastest response time but should only be used for records known to be unique.- Parameters:
processingType
- The processing mode that determines how Match IDs are generated and results are saved. Each mode provides different levels of accuracy, response time, and completeness of results.If not specified, defaults to
CONSISTENT
.CONSISTENT
: Performs immediate lookup and matching against all existing records, with results saved synchronously. Provides highest accuracy but slower response time.EVENTUAL
(shown as Background in the console): Performs initial match ID lookup or generation immediately, with record updates processed asynchronously in the background. Offers faster initial response time, with complete matching results available later in S3.EVENTUAL_NO_LOOKUP
(shown as Quick ID generation in the console): Generates new match IDs without checking existing matches, with updates processed asynchronously. Provides fastest response time but should only be used for records known to be unique.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
processingType
The processing mode that determines how Match IDs are generated and results are saved. Each mode provides different levels of accuracy, response time, and completeness of results.
If not specified, defaults to
CONSISTENT
.CONSISTENT
: Performs immediate lookup and matching against all existing records, with results saved synchronously. Provides highest accuracy but slower response time.EVENTUAL
(shown as Background in the console): Performs initial match ID lookup or generation immediately, with record updates processed asynchronously in the background. Offers faster initial response time, with complete matching results available later in S3.EVENTUAL_NO_LOOKUP
(shown as Quick ID generation in the console): Generates new match IDs without checking existing matches, with updates processed asynchronously. Provides fastest response time but should only be used for records known to be unique.- Parameters:
processingType
- The processing mode that determines how Match IDs are generated and results are saved. Each mode provides different levels of accuracy, response time, and completeness of results.If not specified, defaults to
CONSISTENT
.CONSISTENT
: Performs immediate lookup and matching against all existing records, with results saved synchronously. Provides highest accuracy but slower response time.EVENTUAL
(shown as Background in the console): Performs initial match ID lookup or generation immediately, with record updates processed asynchronously in the background. Offers faster initial response time, with complete matching results available later in S3.EVENTUAL_NO_LOOKUP
(shown as Quick ID generation in the console): Generates new match IDs without checking existing matches, with updates processed asynchronously. Provides fastest response time but should only be used for records known to be unique.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
GenerateMatchIdRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
GenerateMatchIdRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-