Class CfnIdNamespace
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.entityresolution.CfnIdNamespace
- All Implemented Interfaces:
IInspectable,IIdNamespaceRef,IEnvironmentAware,ITaggableV2,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:21.952Z")
@Stability(Stable)
public class CfnIdNamespace
extends CfnResource
implements IInspectable, IIdNamespaceRef, ITaggableV2
Creates an ID namespace object which will help customers provide metadata explaining their dataset and how to use it.
Each ID namespace must have a unique name. To modify an existing ID namespace, use the UpdateIdNamespace API.
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.*;
CfnIdNamespace cfnIdNamespace = CfnIdNamespace.Builder.create(this, "MyCfnIdNamespace")
.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 TypeClassDescriptionstatic final classA fluent builder forCfnIdNamespace.static interfaceAn object containingidMappingType,providerProperties, andruleBasedProperties.static interfaceAn object containinginputSourceARNandschemaName.static interfaceAn object containingproviderConfigurationandproviderServiceArn.static interfaceThe rule-based properties of an ID namespace.static interfaceAn object containing theruleNameandmatchingKeys.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.entityresolution.IIdNamespaceRef
IIdNamespaceRef.Jsii$Default, IIdNamespaceRef.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggableV2
ITaggableV2.Jsii$Default, ITaggableV2.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnIdNamespace(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnIdNamespace(software.amazon.jsii.JsiiObjectRef objRef) CfnIdNamespace(software.constructs.Construct scope, String id, CfnIdNamespaceProps props) Create a newAWS::EntityResolution::IdNamespace. -
Method Summary
Modifier and TypeMethodDescriptionstatic StringarnForIdNamespace(IIdNamespaceRef resource) static IIdNamespaceReffromIdNamespaceArn(software.constructs.Construct scope, String id, String arn) Creates a new IIdNamespaceRef from an ARN.static IIdNamespaceReffromIdNamespaceName(software.constructs.Construct scope, String id, String idNamespaceName) Creates a new IIdNamespaceRef from a idNamespaceName.The date and time when the IdNamespace was created.The arn associated with the IdNamespace.The date and time when the IdNamespace was updated.Tag Manager which manages the tags for this resource.The description of the ID namespace.Determines the properties ofIdMappingWorflowwhere thisIdNamespacecan be used as aSourceor aTarget.The name of the ID namespace.A reference to a IdNamespace resource.A list ofInputSourceobjects, which have the fieldsInputSourceARNandSchemaName.The 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.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidsetDescription(String value) The description of the ID namespace.voidsetIdMappingWorkflowProperties(List<Object> value) Determines the properties ofIdMappingWorflowwhere thisIdNamespacecan be used as aSourceor aTarget.voidDetermines the properties ofIdMappingWorflowwhere thisIdNamespacecan be used as aSourceor aTarget.voidsetIdNamespaceName(String value) The name of the ID namespace.voidsetInputSourceConfig(List<Object> value) A list ofInputSourceobjects, which have the fieldsInputSourceARNandSchemaName.voidsetInputSourceConfig(IResolvable value) A list ofInputSourceobjects, which have the fieldsInputSourceARNandSchemaName.voidsetRoleArn(String value) The Amazon Resource Name (ARN) of the IAM role.voidThe tags used to organize, track, or control access for this resource.voidThe type of ID namespace.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnIdNamespace
protected CfnIdNamespace(software.amazon.jsii.JsiiObjectRef objRef) -
CfnIdNamespace
protected CfnIdNamespace(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnIdNamespace
@Stability(Stable) public CfnIdNamespace(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnIdNamespaceProps props) Create a newAWS::EntityResolution::IdNamespace.- Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties. This parameter is required.
-
-
Method Details
-
arnForIdNamespace
@Stability(Stable) @NotNull public static String arnForIdNamespace(@NotNull IIdNamespaceRef resource) - Parameters:
resource- This parameter is required.
-
fromIdNamespaceArn
@Stability(Stable) @NotNull public static IIdNamespaceRef fromIdNamespaceArn(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String arn) Creates a new IIdNamespaceRef from an ARN.- Parameters:
scope- This parameter is required.id- This parameter is required.arn- This parameter is required.
-
fromIdNamespaceName
@Stability(Stable) @NotNull public static IIdNamespaceRef fromIdNamespaceName(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String idNamespaceName) Creates a new IIdNamespaceRef from a idNamespaceName.- Parameters:
scope- This parameter is required.id- This parameter is required.idNamespaceName- This parameter is required.
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrCreatedAt
The date and time when the IdNamespace was created. -
getAttrIdNamespaceArn
The arn associated with the IdNamespace. -
getAttrUpdatedAt
The date and time when the IdNamespace was updated. -
getCdkTagManager
Tag Manager which manages the tags for this resource.- Specified by:
getCdkTagManagerin interfaceITaggableV2
-
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getIdNamespaceRef
A reference to a IdNamespace resource.- Specified by:
getIdNamespaceRefin interfaceIIdNamespaceRef
-
getIdNamespaceName
The name of the ID namespace. -
setIdNamespaceName
The name of the ID namespace. -
getType
The type of ID namespace.There are two types:
SOURCEandTARGET. -
setType
The type of ID namespace.There are two types:
SOURCEandTARGET. -
getDescription
The description of the ID namespace. -
setDescription
The description of the ID namespace. -
getIdMappingWorkflowProperties
Determines the properties ofIdMappingWorflowwhere thisIdNamespacecan be used as aSourceor aTarget.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnIdNamespace.IdNamespaceIdMappingWorkflowPropertiesProperty> -
setIdMappingWorkflowProperties
Determines the properties ofIdMappingWorflowwhere thisIdNamespacecan be used as aSourceor aTarget. -
setIdMappingWorkflowProperties
Determines the properties ofIdMappingWorflowwhere thisIdNamespacecan be used as aSourceor aTarget. -
getInputSourceConfig
A list ofInputSourceobjects, which have the fieldsInputSourceARNandSchemaName.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnIdNamespace.IdNamespaceInputSourceProperty> -
setInputSourceConfig
A list ofInputSourceobjects, which have the fieldsInputSourceARNandSchemaName. -
setInputSourceConfig
A list ofInputSourceobjects, which have the fieldsInputSourceARNandSchemaName. -
getRoleArn
The Amazon Resource Name (ARN) of the IAM role. -
setRoleArn
The Amazon Resource Name (ARN) of the IAM role. -
getTags
The tags used to organize, track, or control access for this resource. -
setTags
The tags used to organize, track, or control access for this resource.
-