Class CfnObjectType.ObjectTypeFieldProperty
Represents a field in a ProfileObjectType.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnObjectType.ObjectTypeFieldProperty : CfnObjectType.IObjectTypeFieldProperty
Syntax (vb)
Public Class CfnObjectType.ObjectTypeFieldProperty Implements CfnObjectType.IObjectTypeFieldProperty
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.CustomerProfiles;
var objectTypeFieldProperty = new ObjectTypeFieldProperty {
ContentType = "contentType",
Source = "source",
Target = "target"
};
Synopsis
Constructors
| ObjectTypeFieldProperty() | Represents a field in a ProfileObjectType. |
Properties
| ContentType | The content type of the field. |
| Source | A field of a ProfileObject. |
| Target | The location of the data in the standard ProfileObject model. |
Constructors
ObjectTypeFieldProperty()
Represents a field in a ProfileObjectType.
public ObjectTypeFieldProperty()
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.CustomerProfiles;
var objectTypeFieldProperty = new ObjectTypeFieldProperty {
ContentType = "contentType",
Source = "source",
Target = "target"
};
Properties
ContentType
The content type of the field.
public string? ContentType { get; set; }
Property Value
Remarks
Used for determining equality when searching.
Source
A field of a ProfileObject.
public string? Source { get; set; }
Property Value
Remarks
For example: _source.FirstName, where “_source” is a ProfileObjectType of a Zendesk user and “FirstName” is a field in that ObjectType.
Target
The location of the data in the standard ProfileObject model.
public string? Target { get; set; }
Property Value
Remarks
For example: _profile.Address.PostalCode.