DomainAttributeTypesSelectorArgs

data class DomainAttributeTypesSelectorArgs(val address: Output<List<String>>? = null, val attributeMatchingModel: Output<DomainAttributeTypesSelectorAttributeMatchingModel>, val emailAddress: Output<List<String>>? = null, val phoneNumber: Output<List<String>>? = null) : ConvertibleToJava<DomainAttributeTypesSelectorArgs>

Configures information about the AttributeTypesSelector where the rule-based identity resolution uses to match profiles.

Constructors

Link copied to clipboard
constructor(address: Output<List<String>>? = null, attributeMatchingModel: Output<DomainAttributeTypesSelectorAttributeMatchingModel>, emailAddress: Output<List<String>>? = null, phoneNumber: Output<List<String>>? = null)

Properties

Link copied to clipboard
val address: Output<List<String>>? = null

The Address type. You can choose from Address, BusinessAddress, MaillingAddress, and ShippingAddress. You only can use the Address type in the MatchingRule. For example, if you want to match profile based on BusinessAddress.City or MaillingAddress.City, you need to choose the BusinessAddress and the MaillingAddress to represent the Address type and specify the Address.City on the matching rule.

Link copied to clipboard

Configures the AttributeMatchingModel, you can either choose ONE_TO_ONE or MANY_TO_MANY.

Link copied to clipboard
val emailAddress: Output<List<String>>? = null

The Email type. You can choose from EmailAddress, BusinessEmailAddress and PersonalEmailAddress. You only can use the EmailAddress type in the MatchingRule. For example, if you want to match profile based on PersonalEmailAddress or BusinessEmailAddress, you need to choose the PersonalEmailAddress and the BusinessEmailAddress to represent the EmailAddress type and only specify the EmailAddress on the matching rule.

Link copied to clipboard
val phoneNumber: Output<List<String>>? = null

The PhoneNumber type. You can choose from PhoneNumber, HomePhoneNumber, and MobilePhoneNumber. You only can use the PhoneNumber type in the MatchingRule. For example, if you want to match a profile based on Phone or HomePhone, you need to choose the Phone and the HomePhone to represent the PhoneNumber type and only specify the PhoneNumber on the matching rule.

Functions

Link copied to clipboard
open override fun toJava(): DomainAttributeTypesSelectorArgs