Interface MergeProfilesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<MergeProfilesRequest.Builder,MergeProfilesRequest>,CustomerProfilesRequest.Builder,SdkBuilder<MergeProfilesRequest.Builder,MergeProfilesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- MergeProfilesRequest
public static interface MergeProfilesRequest.Builder extends CustomerProfilesRequest.Builder, SdkPojo, CopyableBuilder<MergeProfilesRequest.Builder,MergeProfilesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MergeProfilesRequest.BuilderdomainName(String domainName)The unique name of the domain.default MergeProfilesRequest.BuilderfieldSourceProfileIds(Consumer<FieldSourceProfileIds.Builder> fieldSourceProfileIds)The identifiers of the fields in the profile that has the information you want to apply to the merge.MergeProfilesRequest.BuilderfieldSourceProfileIds(FieldSourceProfileIds fieldSourceProfileIds)The identifiers of the fields in the profile that has the information you want to apply to the merge.MergeProfilesRequest.BuildermainProfileId(String mainProfileId)The identifier of the profile to be taken.MergeProfilesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)MergeProfilesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)MergeProfilesRequest.BuilderprofileIdsToBeMerged(String... profileIdsToBeMerged)The identifier of the profile to be merged into MainProfileId.MergeProfilesRequest.BuilderprofileIdsToBeMerged(Collection<String> profileIdsToBeMerged)The identifier of the profile to be merged into MainProfileId.-
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.customerprofiles.model.CustomerProfilesRequest.Builder
build
-
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
-
domainName
MergeProfilesRequest.Builder domainName(String domainName)
The unique name of the domain.
- Parameters:
domainName- The unique name of the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mainProfileId
MergeProfilesRequest.Builder mainProfileId(String mainProfileId)
The identifier of the profile to be taken.
- Parameters:
mainProfileId- The identifier of the profile to be taken.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profileIdsToBeMerged
MergeProfilesRequest.Builder profileIdsToBeMerged(Collection<String> profileIdsToBeMerged)
The identifier of the profile to be merged into MainProfileId.
- Parameters:
profileIdsToBeMerged- The identifier of the profile to be merged into MainProfileId.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profileIdsToBeMerged
MergeProfilesRequest.Builder profileIdsToBeMerged(String... profileIdsToBeMerged)
The identifier of the profile to be merged into MainProfileId.
- Parameters:
profileIdsToBeMerged- The identifier of the profile to be merged into MainProfileId.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldSourceProfileIds
MergeProfilesRequest.Builder fieldSourceProfileIds(FieldSourceProfileIds fieldSourceProfileIds)
The identifiers of the fields in the profile that has the information you want to apply to the merge. For example, say you want to merge EmailAddress from Profile1 into MainProfile. This would be the identifier of the EmailAddress field in Profile1.
- Parameters:
fieldSourceProfileIds- The identifiers of the fields in the profile that has the information you want to apply to the merge. For example, say you want to merge EmailAddress from Profile1 into MainProfile. This would be the identifier of the EmailAddress field in Profile1.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldSourceProfileIds
default MergeProfilesRequest.Builder fieldSourceProfileIds(Consumer<FieldSourceProfileIds.Builder> fieldSourceProfileIds)
The identifiers of the fields in the profile that has the information you want to apply to the merge. For example, say you want to merge EmailAddress from Profile1 into MainProfile. This would be the identifier of the EmailAddress field in Profile1.
This is a convenience method that creates an instance of theFieldSourceProfileIds.Builderavoiding the need to create one manually viaFieldSourceProfileIds.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofieldSourceProfileIds(FieldSourceProfileIds).- Parameters:
fieldSourceProfileIds- a consumer that will call methods onFieldSourceProfileIds.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
fieldSourceProfileIds(FieldSourceProfileIds)
-
overrideConfiguration
MergeProfilesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
MergeProfilesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-