Interface CfnIdMappingWorkflow.ProviderPropertiesProperty

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

@Stability(Stable) public static interface CfnIdMappingWorkflow.ProviderPropertiesProperty extends software.amazon.jsii.JsiiSerializable
An object containing the providerServiceARN , intermediateSourceConfiguration , and providerConfiguration .

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

See Also: