Show / Hide Table of Contents

Class CfnDomainObjectType.DomainObjectTypeFieldProperty

Represents a field in a DomainObjectType.

Inheritance
object
CfnDomainObjectType.DomainObjectTypeFieldProperty
Implements
CfnDomainObjectType.IDomainObjectTypeFieldProperty
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 CfnDomainObjectType.DomainObjectTypeFieldProperty : CfnDomainObjectType.IDomainObjectTypeFieldProperty
Syntax (vb)
Public Class CfnDomainObjectType.DomainObjectTypeFieldProperty Implements CfnDomainObjectType.IDomainObjectTypeFieldProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domainobjecttype-domainobjecttypefield.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 domainObjectTypeFieldProperty = new DomainObjectTypeFieldProperty {
                 Source = "source",
                 Target = "target",

                 // the properties below are optional
                 ContentType = "contentType",
                 FeatureType = "featureType"
             };

Synopsis

Constructors

DomainObjectTypeFieldProperty()

Represents a field in a DomainObjectType.

Properties

ContentType

The content type of the field.

FeatureType

The feature type of the field.

Source

The source field name.

Target

The target field name.

Constructors

DomainObjectTypeFieldProperty()

Represents a field in a DomainObjectType.

public DomainObjectTypeFieldProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domainobjecttype-domainobjecttypefield.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 domainObjectTypeFieldProperty = new DomainObjectTypeFieldProperty {
                 Source = "source",
                 Target = "target",

                 // the properties below are optional
                 ContentType = "contentType",
                 FeatureType = "featureType"
             };

Properties

ContentType

The content type of the field.

public string? ContentType { get; set; }
Property Value

string

Remarks

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

FeatureType

The feature type of the field.

public string? FeatureType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domainobjecttype-domainobjecttypefield.html#cfn-customerprofiles-domainobjecttype-domainobjecttypefield-featuretype

Source

The source field name.

public string Source { get; set; }
Property Value

string

Remarks

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

Target

The target field name.

public string Target { get; set; }
Property Value

string

Remarks

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

Implements

CfnDomainObjectType.IDomainObjectTypeFieldProperty
Back to top Generated by DocFX