Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-objecttypefield.html

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

string

Remarks

Used for determining equality when searching.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-objecttypefield.html#cfn-customerprofiles-objecttype-objecttypefield-contenttype

Source

A field of a ProfileObject.

string? Source { get; }
Property Value

string

Remarks

For example: _source.FirstName, where “_source” is a ProfileObjectType of a Zendesk user and “FirstName” is a field in that ObjectType.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-objecttypefield.html#cfn-customerprofiles-objecttype-objecttypefield-source

Target

The location of the data in the standard ProfileObject model.

string? Target { get; }
Property Value

string

Remarks

For example: _profile.Address.PostalCode.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-objecttypefield.html#cfn-customerprofiles-objecttype-objecttypefield-target

Back to top Generated by DocFX