interface ConditionThresholdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnConfigurationSetPropsMixin.ConditionThresholdProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnConfigurationSetPropsMixin_ConditionThresholdProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnConfigurationSetPropsMixin.ConditionThresholdProperty |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnConfigurationSetPropsMixin.ConditionThresholdProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » 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 { aws_ses as ses } from '@aws-cdk/cfn-property-mixins';
const conditionThresholdProperty: ses.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