Interface CfnConfigurationSet.ConditionThresholdProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationSet.ConditionThresholdProperty.Jsii$Proxy
- Enclosing class:
CfnConfigurationSet
@Stability(Stable)
public static interface CfnConfigurationSet.ConditionThresholdProperty
extends software.amazon.jsii.JsiiSerializable
The condition threshold settings for suppression validation.
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.*;
ConditionThresholdProperty conditionThresholdProperty = ConditionThresholdProperty.builder()
.conditionThresholdEnabled("conditionThresholdEnabled")
// the properties below are optional
.overallConfidenceThreshold(OverallConfidenceThresholdProperty.builder()
.confidenceVerdictThreshold("confidenceVerdictThreshold")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigurationSet.ConditionThresholdPropertystatic final classAn implementation forCfnConfigurationSet.ConditionThresholdProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConditionThresholdEnabled
Whether the condition threshold is enabled or disabled.- See Also:
-
getOverallConfidenceThreshold
The overall confidence threshold settings.Returns union: either
IResolvableorCfnConfigurationSet.OverallConfidenceThresholdProperty- See Also:
-
builder
-