Creates a domain, which is a container for all customer data, such as customer profile attributes, object types, profile keys, and encryption keys
Source:R/customerprofiles_operations.R
customerprofiles_create_domain.RdCreates a domain, which is a container for all customer data, such as customer profile attributes, object types, profile keys, and encryption keys. You can create multiple domains, and each domain can have multiple third-party integrations.
See https://www.paws-r-sdk.com/docs/customerprofiles_create_domain/ for full documentation.
Usage
customerprofiles_create_domain(
DomainName,
DefaultExpirationDays,
DefaultEncryptionKey = NULL,
DeadLetterQueueUrl = NULL,
Matching = NULL,
RuleBasedMatching = NULL,
DataStore = NULL,
Tags = NULL
)Arguments
- DomainName
[required] The unique name of the domain.
- DefaultExpirationDays
[required] The default number of days until the data within the domain expires.
- DefaultEncryptionKey
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.
- DeadLetterQueueUrl
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.
- Matching
The process of matching duplicate profiles. If
Matching=true, Amazon Connect Customer Profiles starts a weekly batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every Saturday at 12AM UTC to detect duplicate profiles in your domains.After the Identity Resolution Job completes, use the
get_matchesAPI to return and review the results. Or, if you have configuredExportingConfigin theMatchingRequest, you can download the results from S3.- RuleBasedMatching
The process of matching duplicate profiles using the Rule-Based matching. If
RuleBasedMatching= true, Connect Customer Customer Profiles will start to match and merge your profiles according to your configuration in theRuleBasedMatchingRequest. You can use thelist_rule_based_matchesandget_similar_profilesAPI to return and review the results. Also, if you have configuredExportingConfigin theRuleBasedMatchingRequest, you can download the results from S3.- DataStore
Set to true to enabled data store for this domain.
The tags used to organize, track, or control access for this resource.