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 , providerProperties , and ruleBasedProperties .
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())
.ruleBasedProperties(NamespaceRuleBasedPropertiesProperty.builder()
.attributeMatchingModel("attributeMatchingModel")
.recordMatchingModels(List.of("recordMatchingModels"))
.ruleDefinitionTypes(List.of("ruleDefinitionTypes"))
.rules(List.of(RuleProperty.builder()
.matchingKeys(List.of("matchingKeys"))
.ruleName("ruleName")
.build()))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnIdNamespace.IdNamespaceIdMappingWorkflowPropertiesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdMappingType
The type of ID mapping.- See Also:
-
getProviderProperties
An object which defines any additional configurations required by the provider service.Returns union: either
IResolvableorCfnIdNamespace.NamespaceProviderPropertiesProperty- See Also:
-
getRuleBasedProperties
An object which defines any additional configurations required by rule-based matching.Returns union: either
IResolvableorCfnIdNamespace.NamespaceRuleBasedPropertiesProperty- See Also:
-
builder
@Stability(Stable) static CfnIdNamespace.IdNamespaceIdMappingWorkflowPropertiesProperty.Builder builder()
-