CfnDomainMixinProps
- class aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnDomainMixinProps(*, data_store=None, dead_letter_queue_url=None, default_encryption_key=None, default_expiration_days=None, domain_name=None, matching=None, rule_based_matching=None, tags=None)
Bases:
objectProperties for CfnDomainPropsMixin.
- Parameters:
data_store (
Union[IResolvable,DataStoreProperty,Dict[str,Any],None]) – Configuration and status of the data store for the domain.dead_letter_queue_url (
Optional[str]) – 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 theDeadLetterQueuefor theSendMessageoperation to enable Amazon Connect Customer Profiles to send messages to theDeadLetterQueue.default_encryption_key (
Optional[str]) – 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.default_expiration_days (
Union[int,float,None]) – The default number of days until the data within the domain expires.domain_name (
Optional[str]) – The unique name of the domain.matching (
Union[IResolvable,MatchingProperty,Dict[str,Any],None]) – The process of matching duplicate profiles.rule_based_matching (
Union[IResolvable,RuleBasedMatchingProperty,Dict[str,Any],None]) – The process of matching duplicate profiles using Rule-Based matching.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags used to organize, track, or control access for this resource.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_customerprofiles import mixins as customerprofiles_mixins cfn_domain_mixin_props = customerprofiles_mixins.CfnDomainMixinProps( data_store=customerprofiles_mixins.CfnDomainPropsMixin.DataStoreProperty( enabled=False, readiness=customerprofiles_mixins.CfnDomainPropsMixin.ReadinessProperty( message="message", progress_percentage=123 ) ), dead_letter_queue_url="deadLetterQueueUrl", default_encryption_key="defaultEncryptionKey", default_expiration_days=123, domain_name="domainName", matching=customerprofiles_mixins.CfnDomainPropsMixin.MatchingProperty( auto_merging=customerprofiles_mixins.CfnDomainPropsMixin.AutoMergingProperty( conflict_resolution=customerprofiles_mixins.CfnDomainPropsMixin.ConflictResolutionProperty( conflict_resolving_model="conflictResolvingModel", source_name="sourceName" ), consolidation=customerprofiles_mixins.CfnDomainPropsMixin.ConsolidationProperty( matching_attributes_list=[["matchingAttributesList"]] ), enabled=False, min_allowed_confidence_score_for_merging=123 ), enabled=False, exporting_config=customerprofiles_mixins.CfnDomainPropsMixin.ExportingConfigProperty( s3_exporting=customerprofiles_mixins.CfnDomainPropsMixin.S3ExportingConfigProperty( s3_bucket_name="s3BucketName", s3_key_name="s3KeyName" ) ), job_schedule=customerprofiles_mixins.CfnDomainPropsMixin.JobScheduleProperty( day_of_the_week="dayOfTheWeek", time="time" ) ), rule_based_matching=customerprofiles_mixins.CfnDomainPropsMixin.RuleBasedMatchingProperty( attribute_types_selector=customerprofiles_mixins.CfnDomainPropsMixin.AttributeTypesSelectorProperty( address=["address"], attribute_matching_model="attributeMatchingModel", email_address=["emailAddress"], phone_number=["phoneNumber"] ), conflict_resolution=customerprofiles_mixins.CfnDomainPropsMixin.ConflictResolutionProperty( conflict_resolving_model="conflictResolvingModel", source_name="sourceName" ), enabled=False, exporting_config=customerprofiles_mixins.CfnDomainPropsMixin.ExportingConfigProperty( s3_exporting=customerprofiles_mixins.CfnDomainPropsMixin.S3ExportingConfigProperty( s3_bucket_name="s3BucketName", s3_key_name="s3KeyName" ) ), matching_rules=[customerprofiles_mixins.CfnDomainPropsMixin.MatchingRuleProperty( rule=["rule"] )], max_allowed_rule_level_for_matching=123, max_allowed_rule_level_for_merging=123, status="status" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- data_store
Configuration and status of the data store for the domain.
- dead_letter_queue_url
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
DeadLetterQueuefor theSendMessageoperation to enable Amazon Connect Customer Profiles to send messages to theDeadLetterQueue.
- default_encryption_key
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.
- default_expiration_days
The default number of days until the data within the domain expires.
- domain_name
The unique name of the domain.
- matching
The process of matching duplicate profiles.
- rule_based_matching
The process of matching duplicate profiles using Rule-Based matching.
- tags
The tags used to organize, track, or control access for this resource.