interface KeyMapProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnObjectType.KeyMapProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnObjectType.KeyMapProperty |
Python | aws_cdk.aws_customerprofiles.CfnObjectType.KeyMapProperty |
TypeScript | @aws-cdk/aws-customerprofiles » CfnObjectType » KeyMapProperty |
A unique key map that can be used to map data to the profile.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as customerprofiles from '@aws-cdk/aws-customerprofiles';
const keyMapProperty: customerprofiles.CfnObjectType.KeyMapProperty = {
name: 'name',
objectTypeKeyList: [{
fieldNames: ['fieldNames'],
standardIdentifiers: ['standardIdentifiers'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | Name of the key. |
| object | IResolvable | IResolvable | Object[] | A list of ObjectTypeKey. |
name?
Type:
string
(optional)
Name of the key.
objectTypeKeyList?
Type:
IResolvable | IResolvable | Object[]
(optional)
A list of ObjectTypeKey.

.NET
Java
Python
TypeScript