Class CfnDomainPropsMixin
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnDomainPropsMixin
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable,software.constructs.IMixin
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.726Z")
@Stability(Stable)
public class CfnDomainPropsMixin
extends Mixin
implements software.constructs.IMixin
Specifies an Amazon Connect Customer Profiles Domain.
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.*;
import software.amazon.awscdk.*;
IMergeStrategy mergeStrategy;
CfnDomainPropsMixin cfnDomainPropsMixin = CfnDomainPropsMixin.Builder.create(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())
.strategy(mergeStrategy)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceConfigures information about theAttributeTypesSelectorwhich rule-based identity resolution uses to match profiles.static interfaceConfiguration information about the auto-merging process.static final classA fluent builder forCfnDomainPropsMixin.static interfaceDetermines how the auto-merging process should resolve conflicts between different profiles.static interfaceA list of matching attributes that represent matching criteria.static interfaceConfiguration and status of the data store for the domain.static interfaceUsage-specific statistics about the domain.static interfaceConfiguration information for exporting Identity Resolution results, for example, to an S3 bucket.static interfaceThe day and time when do you want to start the Identity Resolution Job every week.static interfaceThe process of matching duplicate profiles.static interfaceSpecifies how the rule-based matching process should match profiles.static interfaceProgress information for data store setup.static interfaceThe process of matching duplicate profiles using Rule-Based matching.static interfaceThe S3 location where Identity Resolution Jobs write result files.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IMixin
software.constructs.IMixin.Jsii$Default, software.constructs.IMixin.Jsii$Proxy -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionCreate a mixin to apply properties toAWS::CustomerProfiles::Domain.CfnDomainPropsMixin(CfnDomainMixinProps props, CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::CustomerProfiles::Domain.protectedCfnDomainPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnDomainPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionvoidapplyTo(software.constructs.IConstruct construct) Apply the mixin properties to the construct.protected CfnDomainMixinPropsgetProps()protected IMergeStrategysupports(software.constructs.IConstruct construct) Check if this mixin supports the given construct.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_PROPERTY_KEYS
-
-
Constructor Details
-
CfnDomainPropsMixin
protected CfnDomainPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
CfnDomainPropsMixin
protected CfnDomainPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnDomainPropsMixin
@Stability(Stable) public CfnDomainPropsMixin(@NotNull CfnDomainMixinProps props, @Nullable CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::CustomerProfiles::Domain.- Parameters:
props- L1 properties to apply. This parameter is required.options- Mixin options.
-
CfnDomainPropsMixin
Create a mixin to apply properties toAWS::CustomerProfiles::Domain.- Parameters:
props- L1 properties to apply. This parameter is required.
-
-
Method Details
-
applyTo
@Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct) Apply the mixin properties to the construct. -
supports
@Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct) Check if this mixin supports the given construct. -
getProps
-
getStrategy
-