Interface CfnIdNamespaceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdNamespaceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.360Z")
@Stability(Stable)
public interface CfnIdNamespaceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnIdNamespacePropsMixin.
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.*;
CfnIdNamespaceMixinProps cfnIdNamespaceMixinProps = CfnIdNamespaceMixinProps.builder()
.description("description")
.idMappingWorkflowProperties(List.of(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()))
.idNamespaceName("idNamespaceName")
.inputSourceConfig(List.of(IdNamespaceInputSourceProperty.builder()
.inputSourceArn("inputSourceArn")
.schemaName("schemaName")
.build()))
.roleArn("roleArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIdNamespaceMixinPropsstatic final classAn implementation forCfnIdNamespaceMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the ID namespace.default ObjectDetermines the properties ofIdMappingWorflowwhere thisIdNamespacecan be used as aSourceor aTarget.default StringThe 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.default StringgetType()The type of ID namespace.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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: '<'eitherIResolvableorCfnIdNamespacePropsMixin.IdNamespaceIdMappingWorkflowPropertiesProperty>- See Also:
-
getIdNamespaceName
The name of the ID namespace.- See Also:
-
getInputSourceConfig
A list ofInputSourceobjects, which have the fieldsInputSourceARNandSchemaName.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnIdNamespacePropsMixin.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:
-
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:
-
builder
- Returns:
- a
CfnIdNamespaceMixinProps.BuilderofCfnIdNamespaceMixinProps
-