Interface CfnObjectType.IObjectTypeFieldProperty
Represents a field in a ProfileObjectType.
Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnObjectType.IObjectTypeFieldProperty
Syntax (vb)
Public Interface 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
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. |
Properties
ContentType
The content type of the field.
string? ContentType { get; }
Property Value
Remarks
Used for determining equality when searching.
Source
A field of a ProfileObject.
string? Source { get; }
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.
string? Target { get; }
Property Value
Remarks
For example: _profile.Address.PostalCode.