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 and ProviderProperties .

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())
         .build();
 

See Also: