Interface CfnIdNamespace.IdNamespaceIdMappingWorkflowPropertiesProperty

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

@Stability(Stable) public static interface CfnIdNamespace.IdNamespaceIdMappingWorkflowPropertiesProperty extends software.amazon.jsii.JsiiSerializable
An object containing IdMappingType , ProviderProperties , and RuleBasedProperties .

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.entityresolution.*;
 IdNamespaceIdMappingWorkflowPropertiesProperty idNamespaceIdMappingWorkflowPropertiesProperty = IdNamespaceIdMappingWorkflowPropertiesProperty.builder()
         .idMappingType("idMappingType")
         // the properties below are optional
         .providerProperties(NamespaceProviderPropertiesProperty.builder()
                 .providerServiceArn("providerServiceArn")
                 // the properties below are optional
                 .providerConfiguration(Map.of(
                         "providerConfigurationKey", "providerConfiguration"))
                 .build())
         .ruleBasedProperties(NamespaceRuleBasedPropertiesProperty.builder()
                 .attributeMatchingModel("attributeMatchingModel")
                 .recordMatchingModels(List.of("recordMatchingModels"))
                 .ruleDefinitionTypes(List.of("ruleDefinitionTypes"))
                 .rules(List.of(RuleProperty.builder()
                         .matchingKeys(List.of("matchingKeys"))
                         .ruleName("ruleName")
                         .build()))
                 .build())
         .build();
 

See Also: