Interface CfnIdMappingWorkflow.IdMappingTechniquesProperty

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

@Stability(Stable) public static interface CfnIdMappingWorkflow.IdMappingTechniquesProperty extends software.amazon.jsii.JsiiSerializable
An object which defines the ID mapping techniques and provider configurations.

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.*;
 IdMappingTechniquesProperty idMappingTechniquesProperty = IdMappingTechniquesProperty.builder()
         .idMappingType("idMappingType")
         .providerProperties(ProviderPropertiesProperty.builder()
                 .providerServiceArn("providerServiceArn")
                 // the properties below are optional
                 .intermediateSourceConfiguration(IntermediateSourceConfigurationProperty.builder()
                         .intermediateS3Path("intermediateS3Path")
                         .build())
                 .providerConfiguration(Map.of(
                         "providerConfigurationKey", "providerConfiguration"))
                 .build())
         .build();
 

See Also: