Interface CfnDomainMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomainMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.725Z")
@Stability(Stable)
public interface CfnDomainMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDomainPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.*;
CfnDomainMixinProps cfnDomainMixinProps = CfnDomainMixinProps.builder()
.dataStore(DataStoreProperty.builder()
.enabled(false)
.readiness(ReadinessProperty.builder()
.message("message")
.progressPercentage(123)
.build())
.build())
.deadLetterQueueUrl("deadLetterQueueUrl")
.defaultEncryptionKey("defaultEncryptionKey")
.defaultExpirationDays(123)
.domainName("domainName")
.matching(MatchingProperty.builder()
.autoMerging(AutoMergingProperty.builder()
.conflictResolution(ConflictResolutionProperty.builder()
.conflictResolvingModel("conflictResolvingModel")
.sourceName("sourceName")
.build())
.consolidation(ConsolidationProperty.builder()
.matchingAttributesList(List.of(List.of("matchingAttributesList")))
.build())
.enabled(false)
.minAllowedConfidenceScoreForMerging(123)
.build())
.enabled(false)
.exportingConfig(ExportingConfigProperty.builder()
.s3Exporting(S3ExportingConfigProperty.builder()
.s3BucketName("s3BucketName")
.s3KeyName("s3KeyName")
.build())
.build())
.jobSchedule(JobScheduleProperty.builder()
.dayOfTheWeek("dayOfTheWeek")
.time("time")
.build())
.build())
.ruleBasedMatching(RuleBasedMatchingProperty.builder()
.attributeTypesSelector(AttributeTypesSelectorProperty.builder()
.address(List.of("address"))
.attributeMatchingModel("attributeMatchingModel")
.emailAddress(List.of("emailAddress"))
.phoneNumber(List.of("phoneNumber"))
.build())
.conflictResolution(ConflictResolutionProperty.builder()
.conflictResolvingModel("conflictResolvingModel")
.sourceName("sourceName")
.build())
.enabled(false)
.exportingConfig(ExportingConfigProperty.builder()
.s3Exporting(S3ExportingConfigProperty.builder()
.s3BucketName("s3BucketName")
.s3KeyName("s3KeyName")
.build())
.build())
.matchingRules(List.of(MatchingRuleProperty.builder()
.rule(List.of("rule"))
.build()))
.maxAllowedRuleLevelForMatching(123)
.maxAllowedRuleLevelForMerging(123)
.status("status")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomainMixinPropsstatic final classAn implementation forCfnDomainMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDomainMixinProps.Builderbuilder()default ObjectConfiguration and status of the data store for the domain.default StringThe URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications.default StringThe default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified.default NumberThe default number of days until the data within the domain expires.default StringThe unique name of the domain.default ObjectThe process of matching duplicate profiles.default ObjectThe process of matching duplicate profiles using Rule-Based matching.getTags()The tags used to organize, track, or control access for this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataStore
Configuration and status of the data store for the domain.Returns union: either
IResolvableorCfnDomainPropsMixin.DataStoreProperty- See Also:
-
getDeadLetterQueueUrl
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.- See Also:
-
getDefaultEncryptionKey
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.
- See Also:
-
getDefaultExpirationDays
The default number of days until the data within the domain expires.- See Also:
-
getDomainName
The unique name of the domain.- See Also:
-
getMatching
The process of matching duplicate profiles.Returns union: either
IResolvableorCfnDomainPropsMixin.MatchingProperty- See Also:
-
getRuleBasedMatching
The process of matching duplicate profiles using Rule-Based matching.Returns union: either
IResolvableorCfnDomainPropsMixin.RuleBasedMatchingProperty- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.- See Also:
-
builder
- Returns:
- a
CfnDomainMixinProps.BuilderofCfnDomainMixinProps
-