Interface CfnConfigurationSetMixinProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:05.500Z") @Stability(Stable) public interface CfnConfigurationSetMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnConfigurationSetPropsMixin.

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.ses.*;
 CfnConfigurationSetMixinProps cfnConfigurationSetMixinProps = CfnConfigurationSetMixinProps.builder()
         .archivingOptions(ArchivingOptionsProperty.builder()
                 .archiveArn("archiveArn")
                 .build())
         .deliveryOptions(DeliveryOptionsProperty.builder()
                 .maxDeliverySeconds(123)
                 .sendingPoolName("sendingPoolName")
                 .tlsPolicy("tlsPolicy")
                 .build())
         .name("name")
         .reputationOptions(ReputationOptionsProperty.builder()
                 .reputationMetricsEnabled(false)
                 .build())
         .sendingOptions(SendingOptionsProperty.builder()
                 .sendingEnabled(false)
                 .build())
         .suppressionOptions(SuppressionOptionsProperty.builder()
                 .suppressedReasons(List.of("suppressedReasons"))
                 .validationOptions(ValidationOptionsProperty.builder()
                         .conditionThreshold(ConditionThresholdProperty.builder()
                                 .conditionThresholdEnabled("conditionThresholdEnabled")
                                 .overallConfidenceThreshold(OverallConfidenceThresholdProperty.builder()
                                         .confidenceVerdictThreshold("confidenceVerdictThreshold")
                                         .build())
                                 .build())
                         .build())
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .trackingOptions(TrackingOptionsProperty.builder()
                 .customRedirectDomain("customRedirectDomain")
                 .httpsPolicy("httpsPolicy")
                 .build())
         .vdmOptions(VdmOptionsProperty.builder()
                 .dashboardOptions(DashboardOptionsProperty.builder()
                         .engagementMetrics("engagementMetrics")
                         .build())
                 .guardianOptions(GuardianOptionsProperty.builder()
                         .optimizedSharedDelivery("optimizedSharedDelivery")
                         .build())
                 .build())
         .build();
 

See Also: