Interface CfnDomainProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDomainProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:14.876Z") @Stability(Stable) public interface CfnDomainProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnDomain.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.customerprofiles.*;
 CfnDomainProps cfnDomainProps = CfnDomainProps.builder()
         .defaultExpirationDays(123)
         .domainName("domainName")
         // the properties below are optional
         .deadLetterQueueUrl("deadLetterQueueUrl")
         .defaultEncryptionKey("defaultEncryptionKey")
         .matching(MatchingProperty.builder()
                 .enabled(false)
                 // the properties below are optional
                 .autoMerging(AutoMergingProperty.builder()
                         .enabled(false)
                         // the properties below are optional
                         .conflictResolution(ConflictResolutionProperty.builder()
                                 .conflictResolvingModel("conflictResolvingModel")
                                 // the properties below are optional
                                 .sourceName("sourceName")
                                 .build())
                         .consolidation(ConsolidationProperty.builder()
                                 .matchingAttributesList(List.of(List.of("matchingAttributesList")))
                                 .build())
                         .minAllowedConfidenceScoreForMerging(123)
                         .build())
                 .exportingConfig(ExportingConfigProperty.builder()
                         .s3Exporting(S3ExportingConfigProperty.builder()
                                 .s3BucketName("s3BucketName")
                                 // the properties below are optional
                                 .s3KeyName("s3KeyName")
                                 .build())
                         .build())
                 .jobSchedule(JobScheduleProperty.builder()
                         .dayOfTheWeek("dayOfTheWeek")
                         .time("time")
                         .build())
                 .build())
         .ruleBasedMatching(RuleBasedMatchingProperty.builder()
                 .enabled(false)
                 // the properties below are optional
                 .attributeTypesSelector(AttributeTypesSelectorProperty.builder()
                         .attributeMatchingModel("attributeMatchingModel")
                         // the properties below are optional
                         .address(List.of("address"))
                         .emailAddress(List.of("emailAddress"))
                         .phoneNumber(List.of("phoneNumber"))
                         .build())
                 .conflictResolution(ConflictResolutionProperty.builder()
                         .conflictResolvingModel("conflictResolvingModel")
                         // the properties below are optional
                         .sourceName("sourceName")
                         .build())
                 .exportingConfig(ExportingConfigProperty.builder()
                         .s3Exporting(S3ExportingConfigProperty.builder()
                                 .s3BucketName("s3BucketName")
                                 // the properties below are optional
                                 .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: