Show / Hide Table of Contents

Class CfnIdNamespacePropsMixin

Creates an ID namespace object which will help customers provide metadata explaining their dataset and how to use it.

Inheritance
object
Mixin
CfnIdNamespacePropsMixin
Implements
IMixin
Inherited Members
Mixin.IsMixin(object)
Namespace: Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnIdNamespacePropsMixin : Mixin, IMixin
Syntax (vb)
Public Class CfnIdNamespacePropsMixin Inherits Mixin Implements IMixin
Remarks

Each ID namespace must have a unique name. To modify an existing ID namespace, use the UpdateIdNamespace API.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html

CloudformationResource: AWS::EntityResolution::IdNamespace

Mixin: true

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.Mixins.Preview.Mixins;
             using Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins;

             var cfnIdNamespacePropsMixin = new CfnIdNamespacePropsMixin(new CfnIdNamespaceMixinProps {
                 Description = "description",
                 IdMappingWorkflowProperties = new [] { new IdNamespaceIdMappingWorkflowPropertiesProperty {
                     IdMappingType = "idMappingType",
                     ProviderProperties = new NamespaceProviderPropertiesProperty {
                         ProviderConfiguration = new Dictionary<string, string> {
                             { "providerConfigurationKey", "providerConfiguration" }
                         },
                         ProviderServiceArn = "providerServiceArn"
                     },
                     RuleBasedProperties = new NamespaceRuleBasedPropertiesProperty {
                         AttributeMatchingModel = "attributeMatchingModel",
                         RecordMatchingModels = new [] { "recordMatchingModels" },
                         RuleDefinitionTypes = new [] { "ruleDefinitionTypes" },
                         Rules = new [] { new RuleProperty {
                             MatchingKeys = new [] { "matchingKeys" },
                             RuleName = "ruleName"
                         } }
                     }
                 } },
                 IdNamespaceName = "idNamespaceName",
                 InputSourceConfig = new [] { new IdNamespaceInputSourceProperty {
                     InputSourceArn = "inputSourceArn",
                     SchemaName = "schemaName"
                 } },
                 RoleArn = "roleArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 Type = "type"
             }, new CfnPropertyMixinOptions {
                 Strategy = PropertyMergeStrategy.OVERRIDE
             });

Synopsis

Constructors

CfnIdNamespacePropsMixin(ICfnIdNamespaceMixinProps, ICfnPropertyMixinOptions?)

Create a mixin to apply properties to AWS::EntityResolution::IdNamespace.

Properties

CFN_PROPERTY_KEYS

Creates an ID namespace object which will help customers provide metadata explaining their dataset and how to use it.

Props

Creates an ID namespace object which will help customers provide metadata explaining their dataset and how to use it.

Strategy

Creates an ID namespace object which will help customers provide metadata explaining their dataset and how to use it.

Methods

ApplyTo(IConstruct)

Apply the mixin properties to the construct.

Supports(IConstruct)

Check if this mixin supports the given construct.

Constructors

CfnIdNamespacePropsMixin(ICfnIdNamespaceMixinProps, ICfnPropertyMixinOptions?)

Create a mixin to apply properties to AWS::EntityResolution::IdNamespace.

public CfnIdNamespacePropsMixin(ICfnIdNamespaceMixinProps props, ICfnPropertyMixinOptions? options = null)
Parameters
props ICfnIdNamespaceMixinProps

L1 properties to apply.

options ICfnPropertyMixinOptions

Mixin options.

Remarks

Each ID namespace must have a unique name. To modify an existing ID namespace, use the UpdateIdNamespace API.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html

CloudformationResource: AWS::EntityResolution::IdNamespace

Mixin: true

ExampleMetadata: fixture=_generated

Properties

CFN_PROPERTY_KEYS

Creates an ID namespace object which will help customers provide metadata explaining their dataset and how to use it.

protected static string[] CFN_PROPERTY_KEYS { get; }
Property Value

string[]

Remarks

Each ID namespace must have a unique name. To modify an existing ID namespace, use the UpdateIdNamespace API.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html

CloudformationResource: AWS::EntityResolution::IdNamespace

Mixin: true

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.Mixins.Preview.Mixins;
             using Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins;

             var cfnIdNamespacePropsMixin = new CfnIdNamespacePropsMixin(new CfnIdNamespaceMixinProps {
                 Description = "description",
                 IdMappingWorkflowProperties = new [] { new IdNamespaceIdMappingWorkflowPropertiesProperty {
                     IdMappingType = "idMappingType",
                     ProviderProperties = new NamespaceProviderPropertiesProperty {
                         ProviderConfiguration = new Dictionary<string, string> {
                             { "providerConfigurationKey", "providerConfiguration" }
                         },
                         ProviderServiceArn = "providerServiceArn"
                     },
                     RuleBasedProperties = new NamespaceRuleBasedPropertiesProperty {
                         AttributeMatchingModel = "attributeMatchingModel",
                         RecordMatchingModels = new [] { "recordMatchingModels" },
                         RuleDefinitionTypes = new [] { "ruleDefinitionTypes" },
                         Rules = new [] { new RuleProperty {
                             MatchingKeys = new [] { "matchingKeys" },
                             RuleName = "ruleName"
                         } }
                     }
                 } },
                 IdNamespaceName = "idNamespaceName",
                 InputSourceConfig = new [] { new IdNamespaceInputSourceProperty {
                     InputSourceArn = "inputSourceArn",
                     SchemaName = "schemaName"
                 } },
                 RoleArn = "roleArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 Type = "type"
             }, new CfnPropertyMixinOptions {
                 Strategy = PropertyMergeStrategy.OVERRIDE
             });

Props

Creates an ID namespace object which will help customers provide metadata explaining their dataset and how to use it.

protected virtual ICfnIdNamespaceMixinProps Props { get; }
Property Value

ICfnIdNamespaceMixinProps

Remarks

Each ID namespace must have a unique name. To modify an existing ID namespace, use the UpdateIdNamespace API.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html

CloudformationResource: AWS::EntityResolution::IdNamespace

Mixin: true

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.Mixins.Preview.Mixins;
             using Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins;

             var cfnIdNamespacePropsMixin = new CfnIdNamespacePropsMixin(new CfnIdNamespaceMixinProps {
                 Description = "description",
                 IdMappingWorkflowProperties = new [] { new IdNamespaceIdMappingWorkflowPropertiesProperty {
                     IdMappingType = "idMappingType",
                     ProviderProperties = new NamespaceProviderPropertiesProperty {
                         ProviderConfiguration = new Dictionary<string, string> {
                             { "providerConfigurationKey", "providerConfiguration" }
                         },
                         ProviderServiceArn = "providerServiceArn"
                     },
                     RuleBasedProperties = new NamespaceRuleBasedPropertiesProperty {
                         AttributeMatchingModel = "attributeMatchingModel",
                         RecordMatchingModels = new [] { "recordMatchingModels" },
                         RuleDefinitionTypes = new [] { "ruleDefinitionTypes" },
                         Rules = new [] { new RuleProperty {
                             MatchingKeys = new [] { "matchingKeys" },
                             RuleName = "ruleName"
                         } }
                     }
                 } },
                 IdNamespaceName = "idNamespaceName",
                 InputSourceConfig = new [] { new IdNamespaceInputSourceProperty {
                     InputSourceArn = "inputSourceArn",
                     SchemaName = "schemaName"
                 } },
                 RoleArn = "roleArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 Type = "type"
             }, new CfnPropertyMixinOptions {
                 Strategy = PropertyMergeStrategy.OVERRIDE
             });

Strategy

Creates an ID namespace object which will help customers provide metadata explaining their dataset and how to use it.

protected virtual PropertyMergeStrategy Strategy { get; }
Property Value

PropertyMergeStrategy

Remarks

Each ID namespace must have a unique name. To modify an existing ID namespace, use the UpdateIdNamespace API.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html

CloudformationResource: AWS::EntityResolution::IdNamespace

Mixin: true

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.Mixins.Preview.Mixins;
             using Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins;

             var cfnIdNamespacePropsMixin = new CfnIdNamespacePropsMixin(new CfnIdNamespaceMixinProps {
                 Description = "description",
                 IdMappingWorkflowProperties = new [] { new IdNamespaceIdMappingWorkflowPropertiesProperty {
                     IdMappingType = "idMappingType",
                     ProviderProperties = new NamespaceProviderPropertiesProperty {
                         ProviderConfiguration = new Dictionary<string, string> {
                             { "providerConfigurationKey", "providerConfiguration" }
                         },
                         ProviderServiceArn = "providerServiceArn"
                     },
                     RuleBasedProperties = new NamespaceRuleBasedPropertiesProperty {
                         AttributeMatchingModel = "attributeMatchingModel",
                         RecordMatchingModels = new [] { "recordMatchingModels" },
                         RuleDefinitionTypes = new [] { "ruleDefinitionTypes" },
                         Rules = new [] { new RuleProperty {
                             MatchingKeys = new [] { "matchingKeys" },
                             RuleName = "ruleName"
                         } }
                     }
                 } },
                 IdNamespaceName = "idNamespaceName",
                 InputSourceConfig = new [] { new IdNamespaceInputSourceProperty {
                     InputSourceArn = "inputSourceArn",
                     SchemaName = "schemaName"
                 } },
                 RoleArn = "roleArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 Type = "type"
             }, new CfnPropertyMixinOptions {
                 Strategy = PropertyMergeStrategy.OVERRIDE
             });

Methods

ApplyTo(IConstruct)

Apply the mixin properties to the construct.

public override IConstruct ApplyTo(IConstruct construct)
Parameters
construct IConstruct
Returns

IConstruct

Overrides
Mixin.ApplyTo(IConstruct)
Remarks

Each ID namespace must have a unique name. To modify an existing ID namespace, use the UpdateIdNamespace API.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html

CloudformationResource: AWS::EntityResolution::IdNamespace

Mixin: true

ExampleMetadata: fixture=_generated

Supports(IConstruct)

Check if this mixin supports the given construct.

public override bool Supports(IConstruct construct)
Parameters
construct IConstruct
Returns

bool

Overrides
Mixin.Supports(IConstruct)
Remarks

Each ID namespace must have a unique name. To modify an existing ID namespace, use the UpdateIdNamespace API.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-idnamespace.html

CloudformationResource: AWS::EntityResolution::IdNamespace

Mixin: true

ExampleMetadata: fixture=_generated

Implements

IMixin
Back to top Generated by DocFX