Class CfnObjectTypePropsMixin.FieldMapProperty
A map of the name and ObjectType field.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnObjectTypePropsMixin.FieldMapProperty : CfnObjectTypePropsMixin.IFieldMapProperty
Syntax (vb)
Public Class CfnObjectTypePropsMixin.FieldMapProperty Implements CfnObjectTypePropsMixin.IFieldMapProperty
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.CfnPropertyMixins.AWS.CustomerProfiles;
var fieldMapProperty = new FieldMapProperty {
Name = "name",
ObjectTypeField = new ObjectTypeFieldProperty {
ContentType = "contentType",
Source = "source",
Target = "target"
}
};
Synopsis
Constructors
| FieldMapProperty() | A map of the name and ObjectType field. |
Properties
| Name | Name of the field. |
| ObjectTypeField | Represents a field in a ProfileObjectType. |
Constructors
FieldMapProperty()
A map of the name and ObjectType field.
public FieldMapProperty()
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.CfnPropertyMixins.AWS.CustomerProfiles;
var fieldMapProperty = new FieldMapProperty {
Name = "name",
ObjectTypeField = new ObjectTypeFieldProperty {
ContentType = "contentType",
Source = "source",
Target = "target"
}
};
Properties
Name
Name of the field.
public string? Name { get; set; }
Property Value
Remarks
ObjectTypeField
Represents a field in a ProfileObjectType.
public object? ObjectTypeField { get; set; }