AWS Fundamentals Logo
AWS Fundamentals
L1 ConstructAWS::EntityResolution::IdNamespace

CfnIdNamespace

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.

Import

import { CfnIdNamespace } from 'aws-cdk-lib/aws-entityresolution';

Or use the module namespace:

import * as entityresolution from 'aws-cdk-lib/aws-entityresolution';
// entityresolution.CfnIdNamespace

Properties

Configuration passed to the constructor as CfnIdNamespaceProps.

idNamespaceNameRequired
string

The name of the ID namespace.

typeRequired
string

The type of ID namespace. There are two types: `SOURCE` and `TARGET` . The `SOURCE` contains configurations for `sourceId` data that will be processed in an ID mapping workflow. The `TARGET` contains a configuration of `targetId` which all `sourceIds` will resolve to.

descriptionOptional
string

The description of the ID namespace.

idMappingWorkflowPropertiesOptional
IResolvable | IResolvable | IdNamespaceIdMappingWorkflowPropertiesProperty[]

Determines the properties of `IdMappingWorflow` where this `IdNamespace` can be used as a `Source` or a `Target` .

inputSourceConfigOptional
IResolvable | IResolvable | IdNamespaceInputSourceProperty[]

A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .

roleArnOptional
string

The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to access the resources defined in this `IdNamespace` on your behalf as part of the workflow run.

tagsOptional
CfnTag[]

The tags used to organize, track, or control access for this resource.

CloudFormation Resource

This L1 construct maps directly to the following CloudFormation resource type.

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

LevelL1 (CloudFormation)
Moduleaws-entityresolution
CFN TypeAWS::EntityResolution::IdNamespace
Properties7

External Links