interface KeyMapProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnObjectTypePropsMixin.KeyMapProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnObjectTypePropsMixin_KeyMapProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnObjectTypePropsMixin.KeyMapProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnObjectTypePropsMixin.KeyMapProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnObjectTypePropsMixin » 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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const keyMapProperty: customerprofiles_mixins.CfnObjectTypePropsMixin.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