interface CfnDomainMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnDomainMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnDomainMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnDomainMixinProps |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnDomainMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnDomainMixinProps |
Properties for CfnDomainPropsMixin.
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 cfnDomainMixinProps: customerprofiles_mixins.CfnDomainMixinProps = {
dataStore: {
enabled: false,
readiness: {
message: 'message',
progressPercentage: 123,
},
},
deadLetterQueueUrl: 'deadLetterQueueUrl',
defaultEncryptionKey: 'defaultEncryptionKey',
defaultExpirationDays: 123,
domainName: 'domainName',
matching: {
autoMerging: {
conflictResolution: {
conflictResolvingModel: 'conflictResolvingModel',
sourceName: 'sourceName',
},
consolidation: {
matchingAttributesList: [['matchingAttributesList']],
},
enabled: false,
minAllowedConfidenceScoreForMerging: 123,
},
enabled: false,
exportingConfig: {
s3Exporting: {
s3BucketName: 's3BucketName',
s3KeyName: 's3KeyName',
},
},
jobSchedule: {
dayOfTheWeek: 'dayOfTheWeek',
time: 'time',
},
},
ruleBasedMatching: {
attributeTypesSelector: {
address: ['address'],
attributeMatchingModel: 'attributeMatchingModel',
emailAddress: ['emailAddress'],
phoneNumber: ['phoneNumber'],
},
conflictResolution: {
conflictResolvingModel: 'conflictResolvingModel',
sourceName: 'sourceName',
},
enabled: false,
exportingConfig: {
s3Exporting: {
s3BucketName: 's3BucketName',
s3KeyName: 's3KeyName',
},
},
matchingRules: [{
rule: ['rule'],
}],
maxAllowedRuleLevelForMatching: 123,
maxAllowedRuleLevelForMerging: 123,
status: 'status',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | Data | Configuration and status of the data store for the domain. |
| dead | string | The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications. |
| default | string | The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified. |
| default | number | The default number of days until the data within the domain expires. |
| domain | string | The unique name of the domain. |
| matching? | IResolvable | Matching | The process of matching duplicate profiles. |
| rule | IResolvable | Rule | The process of matching duplicate profiles using Rule-Based matching. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
dataStore?
Type:
IResolvable | Data
(optional)
Configuration and status of the data store for the domain.
deadLetterQueueUrl?
Type:
string
(optional)
The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications.
You must set up a policy on the DeadLetterQueue for the SendMessage operation to enable Amazon Connect Customer Profiles to send messages to the DeadLetterQueue .
defaultEncryptionKey?
Type:
string
(optional)
The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified.
It is used to encrypt all data before it is placed in permanent or semi-permanent storage.
defaultExpirationDays?
Type:
number
(optional)
The default number of days until the data within the domain expires.
domainName?
Type:
string
(optional)
The unique name of the domain.
matching?
Type:
IResolvable | Matching
(optional)
The process of matching duplicate profiles.
ruleBasedMatching?
Type:
IResolvable | Rule
(optional)
The process of matching duplicate profiles using Rule-Based matching.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.

.NET
Go
Java
Python
TypeScript