Class CfnIdNamespaceProps
Properties for defining a CfnIdNamespace.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EntityResolution
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnIdNamespaceProps : ICfnIdNamespaceProps
Syntax (vb)
Public Class CfnIdNamespaceProps Implements ICfnIdNamespaceProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EntityResolution;
var cfnIdNamespaceProps = new CfnIdNamespaceProps {
IdNamespaceName = "idNamespaceName",
Type = "type",
// the properties below are optional
Description = "description",
IdMappingWorkflowProperties = new [] { new IdNamespaceIdMappingWorkflowPropertiesProperty {
IdMappingType = "idMappingType",
// the properties below are optional
ProviderProperties = new NamespaceProviderPropertiesProperty {
ProviderServiceArn = "providerServiceArn",
// the properties below are optional
ProviderConfiguration = new Dictionary<string, string> {
{ "providerConfigurationKey", "providerConfiguration" }
}
},
RuleBasedProperties = new NamespaceRuleBasedPropertiesProperty {
AttributeMatchingModel = "attributeMatchingModel",
RecordMatchingModels = new [] { "recordMatchingModels" },
RuleDefinitionTypes = new [] { "ruleDefinitionTypes" },
Rules = new [] { new RuleProperty {
MatchingKeys = new [] { "matchingKeys" },
RuleName = "ruleName"
} }
}
} },
InputSourceConfig = new [] { new IdNamespaceInputSourceProperty {
InputSourceArn = "inputSourceArn",
// the properties below are optional
SchemaName = "schemaName"
} },
RoleArn = "roleArn",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnIdNamespaceProps() | Properties for defining a |
Properties
| Description | The description of the ID namespace. |
| IdMappingWorkflowProperties | Determines the properties of |
| IdNamespaceName | The name of the ID namespace. |
| InputSourceConfig | A list of |
| RoleArn | The Amazon Resource Name (ARN) of the IAM role. |
| Tags | The tags used to organize, track, or control access for this resource. |
| Type | The type of ID namespace. There are two types: |
Constructors
CfnIdNamespaceProps()
Properties for defining a CfnIdNamespace.
public CfnIdNamespaceProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EntityResolution;
var cfnIdNamespaceProps = new CfnIdNamespaceProps {
IdNamespaceName = "idNamespaceName",
Type = "type",
// the properties below are optional
Description = "description",
IdMappingWorkflowProperties = new [] { new IdNamespaceIdMappingWorkflowPropertiesProperty {
IdMappingType = "idMappingType",
// the properties below are optional
ProviderProperties = new NamespaceProviderPropertiesProperty {
ProviderServiceArn = "providerServiceArn",
// the properties below are optional
ProviderConfiguration = new Dictionary<string, string> {
{ "providerConfigurationKey", "providerConfiguration" }
}
},
RuleBasedProperties = new NamespaceRuleBasedPropertiesProperty {
AttributeMatchingModel = "attributeMatchingModel",
RecordMatchingModels = new [] { "recordMatchingModels" },
RuleDefinitionTypes = new [] { "ruleDefinitionTypes" },
Rules = new [] { new RuleProperty {
MatchingKeys = new [] { "matchingKeys" },
RuleName = "ruleName"
} }
}
} },
InputSourceConfig = new [] { new IdNamespaceInputSourceProperty {
InputSourceArn = "inputSourceArn",
// the properties below are optional
SchemaName = "schemaName"
} },
RoleArn = "roleArn",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
Description
The description of the ID namespace.
public string? Description { get; set; }
Property Value
Remarks
IdMappingWorkflowProperties
Determines the properties of IdMappingWorflow where this IdNamespace can be used as a Source or a Target .
public object? IdMappingWorkflowProperties { get; set; }
Property Value
Remarks
IdNamespaceName
The name of the ID namespace.
public string IdNamespaceName { get; set; }
Property Value
Remarks
InputSourceConfig
A list of InputSource objects, which have the fields InputSourceARN and SchemaName .
public object? InputSourceConfig { get; set; }
Property Value
Remarks
RoleArn
The Amazon Resource Name (ARN) of the IAM role.
public string? RoleArn { get; set; }
Property Value
Remarks
AWS Entity Resolution assumes this role to access the resources defined in this IdNamespace on your behalf as part of the workflow run.
Tags
The tags used to organize, track, or control access for this resource.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
Type
The type of ID namespace. There are two types: SOURCE and TARGET .
public string Type { get; set; }
Property Value
Remarks
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.