Interface CfnIdNamespaceProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIdNamespaceProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-11T15:55:59.124Z") @Stability(Stable) public interface CfnIdNamespaceProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnIdNamespace.

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.*;
 CfnIdNamespaceProps cfnIdNamespaceProps = CfnIdNamespaceProps.builder()
         .idNamespaceName("idNamespaceName")
         .type("type")
         // the properties below are optional
         .description("description")
         .idMappingWorkflowProperties(List.of(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()))
         .inputSourceConfig(List.of(IdNamespaceInputSourceProperty.builder()
                 .inputSourceArn("inputSourceArn")
                 // the properties below are optional
                 .schemaName("schemaName")
                 .build()))
         .roleArn("roleArn")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: