Interface CfnIdNamespaceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdNamespaceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)",
date="2026-02-09T14:39:11.260Z")
@Stability(Stable)
public interface CfnIdNamespaceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnIdNamespace.
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.*;
CfnIdNamespaceProps cfnIdNamespaceProps = CfnIdNamespaceProps.builder()
.idNamespaceName("idNamespaceName")
.type("type")
// the properties below are optional
.description("description")
.idMappingWorkflowProperties(List.of(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()))
.inputSourceConfig(List.of(IdNamespaceInputSourceProperty.builder()
.inputSourceArn("inputSourceArn")
// the properties below are optional
.schemaName("schemaName")
.build()))
.roleArn("roleArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIdNamespacePropsstatic final classAn implementation forCfnIdNamespaceProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnIdNamespaceProps.Builderbuilder()default StringThe description of the ID namespace.default ObjectDetermines the properties ofIdMappingWorflowwhere thisIdNamespacecan be used as aSourceor aTarget.The name of the ID namespace.default ObjectA list ofInputSourceobjects, which have the fieldsInputSourceARNandSchemaName.default StringThe Amazon Resource Name (ARN) of the IAM role.getTags()The tags used to organize, track, or control access for this resource.getType()The type of ID namespace.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdNamespaceName
The name of the ID namespace.- See Also:
-
getType
The type of ID namespace. There are two types:SOURCEandTARGET.The
SOURCEcontains configurations forsourceIddata that will be processed in an ID mapping workflow.The
TARGETcontains a configuration oftargetIdwhich allsourceIdswill resolve to.- See Also:
-
getDescription
The description of the ID namespace.- See Also:
-
getIdMappingWorkflowProperties
Determines the properties ofIdMappingWorflowwhere thisIdNamespacecan be used as aSourceor aTarget.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnIdNamespace.IdNamespaceIdMappingWorkflowPropertiesProperty>- See Also:
-
getInputSourceConfig
A list ofInputSourceobjects, which have the fieldsInputSourceARNandSchemaName.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnIdNamespace.IdNamespaceInputSourceProperty>- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) of the IAM role.AWS Entity Resolution assumes this role to access the resources defined in this
IdNamespaceon your behalf as part of the workflow run.- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.- See Also:
-
builder
- Returns:
- a
CfnIdNamespaceProps.BuilderofCfnIdNamespaceProps
-