Interface MatchingResponse.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MatchingResponse.Builder,MatchingResponse>,SdkBuilder<MatchingResponse.Builder,MatchingResponse>,SdkPojo
- Enclosing class:
- MatchingResponse
public static interface MatchingResponse.Builder extends SdkPojo, CopyableBuilder<MatchingResponse.Builder,MatchingResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default MatchingResponse.BuilderautoMerging(Consumer<AutoMerging.Builder> autoMerging)Configuration information about the auto-merging process.MatchingResponse.BuilderautoMerging(AutoMerging autoMerging)Configuration information about the auto-merging process.MatchingResponse.Builderenabled(Boolean enabled)The flag that enables the matching process of duplicate profiles.default MatchingResponse.BuilderexportingConfig(Consumer<ExportingConfig.Builder> exportingConfig)Configuration information for exporting Identity Resolution results, for example, to an S3 bucket.MatchingResponse.BuilderexportingConfig(ExportingConfig exportingConfig)Configuration information for exporting Identity Resolution results, for example, to an S3 bucket.default MatchingResponse.BuilderjobSchedule(Consumer<JobSchedule.Builder> jobSchedule)The day and time when do you want to start the Identity Resolution Job every week.MatchingResponse.BuilderjobSchedule(JobSchedule jobSchedule)The day and time when do you want to start the Identity Resolution Job every week.-
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
-
enabled
MatchingResponse.Builder enabled(Boolean enabled)
The flag that enables the matching process of duplicate profiles.
- Parameters:
enabled- The flag that enables the matching process of duplicate profiles.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobSchedule
MatchingResponse.Builder jobSchedule(JobSchedule jobSchedule)
The day and time when do you want to start the Identity Resolution Job every week.
- Parameters:
jobSchedule- The day and time when do you want to start the Identity Resolution Job every week.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobSchedule
default MatchingResponse.Builder jobSchedule(Consumer<JobSchedule.Builder> jobSchedule)
The day and time when do you want to start the Identity Resolution Job every week.
This is a convenience method that creates an instance of theJobSchedule.Builderavoiding the need to create one manually viaJobSchedule.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tojobSchedule(JobSchedule).- Parameters:
jobSchedule- a consumer that will call methods onJobSchedule.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
jobSchedule(JobSchedule)
-
autoMerging
MatchingResponse.Builder autoMerging(AutoMerging autoMerging)
Configuration information about the auto-merging process.
- Parameters:
autoMerging- Configuration information about the auto-merging process.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
autoMerging
default MatchingResponse.Builder autoMerging(Consumer<AutoMerging.Builder> autoMerging)
Configuration information about the auto-merging process.
This is a convenience method that creates an instance of theAutoMerging.Builderavoiding the need to create one manually viaAutoMerging.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toautoMerging(AutoMerging).- Parameters:
autoMerging- a consumer that will call methods onAutoMerging.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
autoMerging(AutoMerging)
-
exportingConfig
MatchingResponse.Builder exportingConfig(ExportingConfig exportingConfig)
Configuration information for exporting Identity Resolution results, for example, to an S3 bucket.
- Parameters:
exportingConfig- Configuration information for exporting Identity Resolution results, for example, to an S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exportingConfig
default MatchingResponse.Builder exportingConfig(Consumer<ExportingConfig.Builder> exportingConfig)
Configuration information for exporting Identity Resolution results, for example, to an S3 bucket.
This is a convenience method that creates an instance of theExportingConfig.Builderavoiding the need to create one manually viaExportingConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexportingConfig(ExportingConfig).- Parameters:
exportingConfig- a consumer that will call methods onExportingConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
exportingConfig(ExportingConfig)
-
-