Interface CfnDomain.AttributeTypesSelectorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDomain.AttributeTypesSelectorProperty.Jsii$Proxy
Enclosing class:
CfnDomain

@Stability(Stable) public static interface CfnDomain.AttributeTypesSelectorProperty extends software.amazon.jsii.JsiiSerializable
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 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: