interface ConditionThresholdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnConfigurationSetPropsMixin.ConditionThresholdProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnConfigurationSetPropsMixin_ConditionThresholdProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnConfigurationSetPropsMixin.ConditionThresholdProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnConfigurationSetPropsMixin.ConditionThresholdProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnConfigurationSetPropsMixin » 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 { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const conditionThresholdProperty: ses_mixins.CfnConfigurationSetPropsMixin.ConditionThresholdProperty = {
conditionThresholdEnabled: 'conditionThresholdEnabled',
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
(optional)
Whether the condition threshold is enabled or disabled.
overallConfidenceThreshold?
Type:
IResolvable | Overall
(optional)
The overall confidence threshold settings.

.NET
Go
Java
Python
TypeScript