Show / Hide Table of Contents

Class CfnObjectType.ObjectTypeFieldProperty

Represents a field in a ProfileObjectType.

Inheritance
object
CfnObjectType.ObjectTypeFieldProperty
Implements
CfnObjectType.IObjectTypeFieldProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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"
             };

Properties

ContentType

The content type of the field.

public string? ContentType { get; set; }
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.

public string? Source { get; set; }
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.

public string? Target { get; set; }
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

Implements

CfnObjectType.IObjectTypeFieldProperty
Back to top Generated by DocFX