Interface CfnConfigurationSetPropsMixin.ValidationOptionsProperty

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

@Stability(Stable) public static interface CfnConfigurationSetPropsMixin.ValidationOptionsProperty extends software.amazon.jsii.JsiiSerializable
An object that contains information about the validation options 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.cfnpropertymixins.services.ses.*;
 ValidationOptionsProperty validationOptionsProperty = ValidationOptionsProperty.builder()
         .conditionThreshold(ConditionThresholdProperty.builder()
                 .conditionThresholdEnabled("conditionThresholdEnabled")
                 .overallConfidenceThreshold(OverallConfidenceThresholdProperty.builder()
                         .confidenceVerdictThreshold("confidenceVerdictThreshold")
                         .build())
                 .build())
         .build();
 

See Also: