Interface CfnIdMappingWorkflowProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdMappingWorkflowProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:31.365Z")
@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()) .ruleBasedProperties(IdMappingRuleBasedPropertiesProperty.builder() .attributeMatchingModel("attributeMatchingModel") .recordMatchingModel("recordMatchingModel") // the properties below are optional .ruleDefinitionType("ruleDefinitionType") .rules(List.of(RuleProperty.builder() .matchingKeys(List.of("matchingKeys")) .ruleName("ruleName") .build())) .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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIdMappingWorkflowProps
static final class
An implementation forCfnIdMappingWorkflowProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
A description of the workflow.An object which defines the ID mapping technique and any additional configurations.A list ofInputSource
objects, which have the fieldsInputSourceARN
andSchemaName
.default Object
A list ofIdMappingWorkflowOutputSource
objects, each of which contains fieldsOutputS3Path
andOutput
.The Amazon Resource Name (ARN) of the IAM role.getTags()
The tags used to organize, track, or control access for this resource.The name of the workflow.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdMappingTechniques
An object which defines the ID mapping technique and any additional configurations.- See Also:
-
getInputSourceConfig
A list ofInputSource
objects, which have the fieldsInputSourceARN
andSchemaName
.- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) of the IAM role.AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
- See Also:
-
getWorkflowName
The name of the workflow.There can't be multiple
IdMappingWorkflows
with the same name.- See Also:
-
getDescription
A description of the workflow.- See Also:
-
getOutputSourceConfig
A list ofIdMappingWorkflowOutputSource
objects, each of which contains fieldsOutputS3Path
andOutput
.- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.- See Also:
-
builder
- Returns:
- a
CfnIdMappingWorkflowProps.Builder
ofCfnIdMappingWorkflowProps
-