interface ConditionThresholdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnConfigurationSet.ConditionThresholdProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnConfigurationSet_ConditionThresholdProperty |
Java | software.amazon.awscdk.services.ses.CfnConfigurationSet.ConditionThresholdProperty |
Python | aws_cdk.aws_ses.CfnConfigurationSet.ConditionThresholdProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnConfigurationSet » ConditionThresholdProperty |
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 { aws_ses as ses } from 'aws-cdk-lib';
const conditionThresholdProperty: ses.CfnConfigurationSet.ConditionThresholdProperty = {
conditionThresholdEnabled: 'conditionThresholdEnabled',
// the properties below are optional
overallConfidenceThreshold: {
confidenceVerdictThreshold: 'confidenceVerdictThreshold',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| condition | string | Whether the condition threshold is enabled or disabled. |
| overall | IResolvable | Overall | The overall confidence threshold settings. |
conditionThresholdEnabled
Type:
string
Whether the condition threshold is enabled or disabled.
overallConfidenceThreshold?
Type:
IResolvable | Overall
(optional)
The overall confidence threshold settings.

.NET
Go
Java
Python
TypeScript