Interface CfnIdNamespacePropsMixin.IdNamespaceIdMappingWorkflowPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdNamespacePropsMixin.IdNamespaceIdMappingWorkflowPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnIdNamespacePropsMixin
@Stability(Stable)
public static interface CfnIdNamespacePropsMixin.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.cfnpropertymixins.services.entityresolution.*;
IdNamespaceIdMappingWorkflowPropertiesProperty idNamespaceIdMappingWorkflowPropertiesProperty = IdNamespaceIdMappingWorkflowPropertiesProperty.builder()
.idMappingType("idMappingType")
.providerProperties(NamespaceProviderPropertiesProperty.builder()
.providerConfiguration(Map.of(
"providerConfigurationKey", "providerConfiguration"))
.providerServiceArn("providerServiceArn")
.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 forCfnIdNamespacePropsMixin.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
IResolvableorCfnIdNamespacePropsMixin.NamespaceProviderPropertiesProperty- See Also:
-
getRuleBasedProperties
An object which defines any additional configurations required by rule-based matching.Returns union: either
IResolvableorCfnIdNamespacePropsMixin.NamespaceRuleBasedPropertiesProperty- See Also:
-
builder
@Stability(Stable) static CfnIdNamespacePropsMixin.IdNamespaceIdMappingWorkflowPropertiesProperty.Builder builder()
-