Interface CfnDomain.AttributeTypesSelectorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomain.AttributeTypesSelectorProperty.Jsii$Proxy
- Enclosing class:
CfnDomain
AttributeTypesSelector which rule-based identity resolution uses to match profiles.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.customerprofiles.*;
AttributeTypesSelectorProperty attributeTypesSelectorProperty = AttributeTypesSelectorProperty.builder()
.attributeMatchingModel("attributeMatchingModel")
// the properties below are optional
.address(List.of("address"))
.emailAddress(List.of("emailAddress"))
.phoneNumber(List.of("phoneNumber"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.AttributeTypesSelectorPropertystatic final classAn implementation forCfnDomain.AttributeTypesSelectorProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()TheAddresstype.Configures theAttributeMatchingModel, you can either chooseONE_TO_ONEorMANY_TO_MANY.The Email type.ThePhoneNumbertype.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributeMatchingModel
Configures theAttributeMatchingModel, you can either chooseONE_TO_ONEorMANY_TO_MANY.- See Also:
-
getAddress
TheAddresstype.You can choose from
Address,BusinessAddress,MaillingAddress, andShippingAddress. You only can use theAddresstype in theMatchingRule. For example, if you want to match a profile based onBusinessAddress.CityorMaillingAddress.City, you can choose theBusinessAddressand theMaillingAddressto represent theAddresstype and specify theAddress.Cityon the matching rule.- See Also:
-
getEmailAddress
The Email type.You can choose from
EmailAddress,BusinessEmailAddressandPersonalEmailAddress. You only can use theEmailAddresstype in theMatchingRule. For example, if you want to match profile based onPersonalEmailAddressorBusinessEmailAddress, you can choose thePersonalEmailAddressand theBusinessEmailAddressto represent theEmailAddresstype and only specify theEmailAddresson the matching rule.- See Also:
-
getPhoneNumber
ThePhoneNumbertype.You can choose from
PhoneNumber,HomePhoneNumber, andMobilePhoneNumber. You only can use thePhoneNumbertype in theMatchingRule. For example, if you want to match a profile based onPhoneorHomePhone, you can choose thePhoneand theHomePhoneto represent thePhoneNumbertype and only specify thePhoneNumberon the matching rule.- See Also:
-
builder
-