interface KeyMapProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnObjectType.KeyMapProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnObjectType_KeyMapProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnObjectType.KeyMapProperty |
Python | aws_cdk.aws_customerprofiles.CfnObjectType.KeyMapProperty |
TypeScript | aws-cdk-lib » 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 { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript