Interface CfnConfigurationSet.SuppressionOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigurationSet.SuppressionOptionsProperty.Jsii$Proxy
Enclosing class:
CfnConfigurationSet

@Stability(Stable) public static interface CfnConfigurationSet.SuppressionOptionsProperty extends software.amazon.jsii.JsiiSerializable
An object that contains information about the suppression list preferences for your account.

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.ses.*;
 SuppressionOptionsProperty suppressionOptionsProperty = SuppressionOptionsProperty.builder()
         .suppressedReasons(List.of("suppressedReasons"))
         .validationOptions(ValidationOptionsProperty.builder()
                 .conditionThreshold(ConditionThresholdProperty.builder()
                         .conditionThresholdEnabled("conditionThresholdEnabled")
                         // the properties below are optional
                         .overallConfidenceThreshold(OverallConfidenceThresholdProperty.builder()
                                 .confidenceVerdictThreshold("confidenceVerdictThreshold")
                                 .build())
                         .build())
                 .build())
         .build();
 

See Also: