interface AttributeTypesSelectorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnDomain.AttributeTypesSelectorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnDomain_AttributeTypesSelectorProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnDomain.AttributeTypesSelectorProperty |
Python | aws_cdk.aws_customerprofiles.CfnDomain.AttributeTypesSelectorProperty |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnDomain » AttributeTypesSelectorProperty |
Configures information about the 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 { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const attributeTypesSelectorProperty: customerprofiles.CfnDomain.AttributeTypesSelectorProperty = {
attributeMatchingModel: 'attributeMatchingModel',
// the properties below are optional
address: ['address'],
emailAddress: ['emailAddress'],
phoneNumber: ['phoneNumber'],
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | string | Configures the AttributeMatchingModel , you can either choose ONE_TO_ONE or MANY_TO_MANY . |
| address? | string[] | The Address type. |
| email | string[] | The Email type. |
| phone | string[] | The PhoneNumber type. |
attributeMatchingModel
Type:
string
Configures the AttributeMatchingModel , you can either choose ONE_TO_ONE or MANY_TO_MANY .
address?
Type:
string[]
(optional)
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 a profile based on BusinessAddress.City or MaillingAddress.City , you can choose the BusinessAddress and the MaillingAddress to represent the Address type and specify the Address.City on the matching rule.
emailAddress?
Type:
string[]
(optional)
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 can choose the PersonalEmailAddress and the BusinessEmailAddress to represent the EmailAddress type and only specify the EmailAddress on the matching rule.
phoneNumber?
Type:
string[]
(optional)
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 can choose the Phone and the HomePhone to represent the PhoneNumber type and only specify the PhoneNumber on the matching rule.

.NET
Go
Java
Python
TypeScript