interface AttributeTypesSelectorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnDomainPropsMixin.AttributeTypesSelectorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnDomainPropsMixin_AttributeTypesSelectorProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnDomainPropsMixin.AttributeTypesSelectorProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnDomainPropsMixin.AttributeTypesSelectorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnDomainPropsMixin » 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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const attributeTypesSelectorProperty: customerprofiles_mixins.CfnDomainPropsMixin.AttributeTypesSelectorProperty = {
address: ['address'],
attributeMatchingModel: 'attributeMatchingModel',
emailAddress: ['emailAddress'],
phoneNumber: ['phoneNumber'],
};
Properties
| Name | Type | Description |
|---|---|---|
| address? | string[] | The Address type. |
| attribute | string | Configures the AttributeMatchingModel , you can either choose ONE_TO_ONE or MANY_TO_MANY . |
| email | string[] | The Email type. |
| phone | string[] | The PhoneNumber type. |
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.
attributeMatchingModel?
Type:
string
(optional)
Configures the AttributeMatchingModel , you can either choose ONE_TO_ONE or MANY_TO_MANY .
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