Show / Hide Table of Contents

Class CfnObjectTypePropsMixin.FieldMapProperty

A map of the name and ObjectType field.

Inheritance
object
CfnObjectTypePropsMixin.FieldMapProperty
Implements
CfnObjectTypePropsMixin.IFieldMapProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnObjectTypePropsMixin.FieldMapProperty : CfnObjectTypePropsMixin.IFieldMapProperty
Syntax (vb)
Public Class CfnObjectTypePropsMixin.FieldMapProperty Implements CfnObjectTypePropsMixin.IFieldMapProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-fieldmap.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.CfnPropertyMixins.AWS.CustomerProfiles;

             var fieldMapProperty = new FieldMapProperty {
                 Name = "name",
                 ObjectTypeField = new ObjectTypeFieldProperty {
                     ContentType = "contentType",
                     Source = "source",
                     Target = "target"
                 }
             };

Synopsis

Constructors

FieldMapProperty()

A map of the name and ObjectType field.

Properties

Name

Name of the field.

ObjectTypeField

Represents a field in a ProfileObjectType.

Constructors

FieldMapProperty()

A map of the name and ObjectType field.

public FieldMapProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-fieldmap.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.CfnPropertyMixins.AWS.CustomerProfiles;

             var fieldMapProperty = new FieldMapProperty {
                 Name = "name",
                 ObjectTypeField = new ObjectTypeFieldProperty {
                     ContentType = "contentType",
                     Source = "source",
                     Target = "target"
                 }
             };

Properties

Name

Name of the field.

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

string

Remarks

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

ObjectTypeField

Represents a field in a ProfileObjectType.

public object? ObjectTypeField { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnObjectTypePropsMixin.IObjectTypeFieldProperty

Implements

CfnObjectTypePropsMixin.IFieldMapProperty
Back to top Generated by DocFX