Class: Aws::CustomerProfiles::Types::MatchingRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::MatchingRule
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-customerprofiles/types.rb
Overview
Specifies how does the rule-based matching process should match profiles. You can choose from the following attributes to build the matching Rule:
-
AccountNumber
-
Address.Address
-
Address.City
-
Address.Country
-
Address.County
-
Address.PostalCode
-
Address.State
-
Address.Province
-
BirthDate
-
BusinessName
-
EmailAddress
-
FirstName
-
Gender
-
LastName
-
MiddleName
-
PhoneNumber
-
Any customized profile attributes that start with the ‘Attributes`
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rule ⇒ Array<String>
A single rule level of the ‘MatchRules`.
Instance Attribute Details
#rule ⇒ Array<String>
A single rule level of the ‘MatchRules`. Configures how the rule-based matching process should match profiles.
3876 3877 3878 3879 3880 |
# File 'lib/aws-sdk-customerprofiles/types.rb', line 3876 class MatchingRule < Struct.new( :rule) SENSITIVE = [] include Aws::Structure end |