Class CfnSchemaMapping
Creates a schema mapping, which defines the schema of the input customer records table.
Inherited Members
Namespace: Amazon.CDK.AwsEntityresolution
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSchemaMapping : CfnResource, IInspectable, ITaggableV2
Syntax (vb)
Public Class CfnSchemaMapping
Inherits CfnResource
Implements IInspectable, ITaggableV2
Remarks
The SchemaMapping
also provides AWS Entity Resolution with some metadata about the table, such as the attribute types of the columns and which columns to match on.
CloudformationResource: AWS::EntityResolution::SchemaMapping
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 cfnSchemaMapping = new CfnSchemaMapping(this, "MyCfnSchemaMapping", new CfnSchemaMappingProps {
MappedInputFields = new [] { new SchemaInputAttributeProperty {
FieldName = "fieldName",
Type = "type",
// the properties below are optional
GroupName = "groupName",
Hashed = false,
MatchKey = "matchKey",
SubType = "subType"
} },
SchemaName = "schemaName",
// the properties below are optional
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
});
Synopsis
Constructors
CfnSchemaMapping(ByRefValue) | Used by jsii to construct an instance of this class from a Javascript-owned object reference |
CfnSchemaMapping(DeputyBase.DeputyProps) | Used by jsii to construct an instance of this class from DeputyProps |
CfnSchemaMapping(Construct, String, ICfnSchemaMappingProps) |
Properties
AttrCreatedAt | The time of this SchemaMapping got created. |
AttrHasWorkflows | The boolean value that indicates whether or not a SchemaMapping has MatchingWorkflows that are associated with. |
AttrSchemaArn | The SchemaMapping arn associated with the Schema. |
AttrUpdatedAt | The time of this SchemaMapping got last updated at. |
CdkTagManager | Tag Manager which manages the tags for this resource. |
CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
CfnProperties | |
Description | A description of the schema. |
MappedInputFields | A list of |
SchemaName | The name of the schema. |
Tags | The tags used to organize, track, or control access for this resource. |
Methods
Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
RenderProperties(IDictionary<String, Object>) |
Constructors
CfnSchemaMapping(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected CfnSchemaMapping(ByRefValue reference)
Parameters
- reference Amazon.JSII.Runtime.Deputy.ByRefValue
The Javascript-owned object reference
CfnSchemaMapping(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected CfnSchemaMapping(DeputyBase.DeputyProps props)
Parameters
- props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps
The deputy props
CfnSchemaMapping(Construct, String, ICfnSchemaMappingProps)
public CfnSchemaMapping(Construct scope, string id, ICfnSchemaMappingProps props)
Parameters
- scope Constructs.Construct
Scope in which this resource is defined.
- id System.String
Construct identifier for this resource (unique in its scope).
- props ICfnSchemaMappingProps
Resource properties.
Properties
AttrCreatedAt
The time of this SchemaMapping got created.
public virtual string AttrCreatedAt { get; }
Property Value
System.String
Remarks
CloudformationAttribute: CreatedAt
AttrHasWorkflows
The boolean value that indicates whether or not a SchemaMapping has MatchingWorkflows that are associated with.
public virtual IResolvable AttrHasWorkflows { get; }
Property Value
Remarks
CloudformationAttribute: HasWorkflows
AttrSchemaArn
The SchemaMapping arn associated with the Schema.
public virtual string AttrSchemaArn { get; }
Property Value
System.String
Remarks
CloudformationAttribute: SchemaArn
AttrUpdatedAt
The time of this SchemaMapping got last updated at.
public virtual string AttrUpdatedAt { get; }
Property Value
System.String
Remarks
CloudformationAttribute: UpdatedAt
CdkTagManager
Tag Manager which manages the tags for this resource.
public virtual TagManager CdkTagManager { get; }
Property Value
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
System.String
CfnProperties
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.Object>
Overrides
Description
A description of the schema.
public virtual string Description { get; set; }
Property Value
System.String
MappedInputFields
A list of MappedInputFields
.
public virtual object MappedInputFields { get; set; }
Property Value
System.Object
SchemaName
The name of the schema.
public virtual string SchemaName { get; set; }
Property Value
System.String
Tags
The tags used to organize, track, or control access for this resource.
public virtual ICfnTag[] Tags { get; set; }
Property Value
ICfnTag[]
Methods
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
Parameters
- inspector TreeInspector
tree inspector to collect and process attributes.
RenderProperties(IDictionary<String, Object>)
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props System.Collections.Generic.IDictionary<System.String, System.Object>
Returns
System.Collections.Generic.IDictionary<System.String, System.Object>