Interface CfnIdMappingWorkflowProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:07.361Z") @Stability(Stable) public interface CfnIdMappingWorkflowProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnIdMappingWorkflow.

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.*;
 CfnIdMappingWorkflowProps cfnIdMappingWorkflowProps = CfnIdMappingWorkflowProps.builder()
         .idMappingTechniques(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())
         .inputSourceConfig(List.of(IdMappingWorkflowInputSourceProperty.builder()
                 .inputSourceArn("inputSourceArn")
                 // the properties below are optional
                 .schemaArn("schemaArn")
                 .type("type")
                 .build()))
         .roleArn("roleArn")
         .workflowName("workflowName")
         // the properties below are optional
         .description("description")
         .outputSourceConfig(List.of(IdMappingWorkflowOutputSourceProperty.builder()
                 .outputS3Path("outputS3Path")
                 // the properties below are optional
                 .kmsArn("kmsArn")
                 .build()))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: