Show / Hide Table of Contents

Class CfnObjectType.ObjectTypeKeyProperty

An object that defines the Key element of a ProfileObject.

Inheritance
object
CfnObjectType.ObjectTypeKeyProperty
Implements
CfnObjectType.IObjectTypeKeyProperty
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.ObjectTypeKeyProperty : CfnObjectType.IObjectTypeKeyProperty
Syntax (vb)
Public Class CfnObjectType.ObjectTypeKeyProperty Implements CfnObjectType.IObjectTypeKeyProperty
Remarks

A Key is a special element that can be used to search for a customer profile.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-objecttypekey.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 objectTypeKeyProperty = new ObjectTypeKeyProperty {
                 FieldNames = new [] { "fieldNames" },
                 StandardIdentifiers = new [] { "standardIdentifiers" }
             };

Synopsis

Constructors

ObjectTypeKeyProperty()

An object that defines the Key element of a ProfileObject.

Properties

FieldNames

The reference for the key name of the fields map.

StandardIdentifiers

The types of keys that a ProfileObject can have.

Constructors

ObjectTypeKeyProperty()

An object that defines the Key element of a ProfileObject.

public ObjectTypeKeyProperty()
Remarks

A Key is a special element that can be used to search for a customer profile.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-objecttypekey.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 objectTypeKeyProperty = new ObjectTypeKeyProperty {
                 FieldNames = new [] { "fieldNames" },
                 StandardIdentifiers = new [] { "standardIdentifiers" }
             };

Properties

FieldNames

The reference for the key name of the fields map.

public string[]? FieldNames { get; set; }
Property Value

string[]

Remarks

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

StandardIdentifiers

The types of keys that a ProfileObject can have.

public string[]? StandardIdentifiers { get; set; }
Property Value

string[]

Remarks

Each ProfileObject can have only 1 UNIQUE key but multiple PROFILE keys. PROFILE means that this key can be used to tie an object to a PROFILE. UNIQUE means that it can be used to uniquely identify an object. If a key a is marked as SECONDARY, it will be used to search for profiles after all other PROFILE keys have been searched. A LOOKUP_ONLY key is only used to match a profile but is not persisted to be used for searching of the profile. A NEW_ONLY key is only used if the profile does not already exist before the object is ingested, otherwise it is only used for matching objects to profiles.

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

Implements

CfnObjectType.IObjectTypeKeyProperty
Back to top Generated by DocFX