Interface RuleBasedProperties.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RuleBasedProperties.Builder,RuleBasedProperties>,SdkBuilder<RuleBasedProperties.Builder,RuleBasedProperties>,SdkPojo
- Enclosing class:
- RuleBasedProperties
public static interface RuleBasedProperties.Builder extends SdkPojo, CopyableBuilder<RuleBasedProperties.Builder,RuleBasedProperties>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RuleBasedProperties.BuilderattributeMatchingModel(String attributeMatchingModel)The comparison type.RuleBasedProperties.BuilderattributeMatchingModel(AttributeMatchingModel attributeMatchingModel)The comparison type.RuleBasedProperties.BuildermatchPurpose(String matchPurpose)An indicator of whether to generate IDs and index the data or not.RuleBasedProperties.BuildermatchPurpose(MatchPurpose matchPurpose)An indicator of whether to generate IDs and index the data or not.RuleBasedProperties.Builderrules(Collection<Rule> rules)A list ofRuleobjects, each of which have fieldsRuleNameandMatchingKeys.RuleBasedProperties.Builderrules(Consumer<Rule.Builder>... rules)A list ofRuleobjects, each of which have fieldsRuleNameandMatchingKeys.RuleBasedProperties.Builderrules(Rule... rules)A list ofRuleobjects, each of which have fieldsRuleNameandMatchingKeys.-
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
-
attributeMatchingModel
RuleBasedProperties.Builder attributeMatchingModel(String attributeMatchingModel)
The comparison type. You can either choose
ONE_TO_ONEorMANY_TO_MANYas theattributeMatchingModel.If you choose
MANY_TO_MANY, the system can match attributes across the sub-types of an attribute type. For example, if the value of theEmailfield of Profile A and the value ofBusinessEmailfield of Profile B matches, the two profiles are matched on theEmailattribute type.If you choose
ONE_TO_ONE, the system can only match attributes if the sub-types are an exact match. For example, for theEmailattribute type, the system will only consider it a match if the value of theEmailfield of Profile A matches the value of theEmailfield of Profile B.- Parameters:
attributeMatchingModel- The comparison type. You can either chooseONE_TO_ONEorMANY_TO_MANYas theattributeMatchingModel.If you choose
MANY_TO_MANY, the system can match attributes across the sub-types of an attribute type. For example, if the value of theEmailfield of Profile A and the value ofBusinessEmailfield of Profile B matches, the two profiles are matched on theEmailattribute type.If you choose
ONE_TO_ONE, the system can only match attributes if the sub-types are an exact match. For example, for theEmailattribute type, the system will only consider it a match if the value of theEmailfield of Profile A matches the value of theEmailfield of Profile B.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AttributeMatchingModel,AttributeMatchingModel
-
attributeMatchingModel
RuleBasedProperties.Builder attributeMatchingModel(AttributeMatchingModel attributeMatchingModel)
The comparison type. You can either choose
ONE_TO_ONEorMANY_TO_MANYas theattributeMatchingModel.If you choose
MANY_TO_MANY, the system can match attributes across the sub-types of an attribute type. For example, if the value of theEmailfield of Profile A and the value ofBusinessEmailfield of Profile B matches, the two profiles are matched on theEmailattribute type.If you choose
ONE_TO_ONE, the system can only match attributes if the sub-types are an exact match. For example, for theEmailattribute type, the system will only consider it a match if the value of theEmailfield of Profile A matches the value of theEmailfield of Profile B.- Parameters:
attributeMatchingModel- The comparison type. You can either chooseONE_TO_ONEorMANY_TO_MANYas theattributeMatchingModel.If you choose
MANY_TO_MANY, the system can match attributes across the sub-types of an attribute type. For example, if the value of theEmailfield of Profile A and the value ofBusinessEmailfield of Profile B matches, the two profiles are matched on theEmailattribute type.If you choose
ONE_TO_ONE, the system can only match attributes if the sub-types are an exact match. For example, for theEmailattribute type, the system will only consider it a match if the value of theEmailfield of Profile A matches the value of theEmailfield of Profile B.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AttributeMatchingModel,AttributeMatchingModel
-
matchPurpose
RuleBasedProperties.Builder matchPurpose(String matchPurpose)
An indicator of whether to generate IDs and index the data or not.
If you choose
IDENTIFIER_GENERATION, the process generates IDs and indexes the data.If you choose
INDEXING, the process indexes the data without generating IDs.- Parameters:
matchPurpose- An indicator of whether to generate IDs and index the data or not.If you choose
IDENTIFIER_GENERATION, the process generates IDs and indexes the data.If you choose
INDEXING, the process indexes the data without generating IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MatchPurpose,MatchPurpose
-
matchPurpose
RuleBasedProperties.Builder matchPurpose(MatchPurpose matchPurpose)
An indicator of whether to generate IDs and index the data or not.
If you choose
IDENTIFIER_GENERATION, the process generates IDs and indexes the data.If you choose
INDEXING, the process indexes the data without generating IDs.- Parameters:
matchPurpose- An indicator of whether to generate IDs and index the data or not.If you choose
IDENTIFIER_GENERATION, the process generates IDs and indexes the data.If you choose
INDEXING, the process indexes the data without generating IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MatchPurpose,MatchPurpose
-
rules
RuleBasedProperties.Builder rules(Collection<Rule> rules)
A list of
Ruleobjects, each of which have fieldsRuleNameandMatchingKeys.- Parameters:
rules- A list ofRuleobjects, each of which have fieldsRuleNameandMatchingKeys.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rules
RuleBasedProperties.Builder rules(Rule... rules)
A list of
Ruleobjects, each of which have fieldsRuleNameandMatchingKeys.- Parameters:
rules- A list ofRuleobjects, each of which have fieldsRuleNameandMatchingKeys.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rules
RuleBasedProperties.Builder rules(Consumer<Rule.Builder>... rules)
A list of
This is a convenience method that creates an instance of theRuleobjects, each of which have fieldsRuleNameandMatchingKeys.Rule.Builderavoiding the need to create one manually viaRule.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#rules(List.) - Parameters:
rules- a consumer that will call methods onRule.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#rules(java.util.Collection)
-
-