interface ValidationOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnConfigurationSet.ValidationOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnConfigurationSet_ValidationOptionsProperty |
Java | software.amazon.awscdk.services.ses.CfnConfigurationSet.ValidationOptionsProperty |
Python | aws_cdk.aws_ses.CfnConfigurationSet.ValidationOptionsProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnConfigurationSet » ValidationOptionsProperty |
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 { aws_ses as ses } from 'aws-cdk-lib';
const validationOptionsProperty: ses.CfnConfigurationSet.ValidationOptionsProperty = {
conditionThreshold: {
conditionThresholdEnabled: 'conditionThresholdEnabled',
// the properties below are optional
overallConfidenceThreshold: {
confidenceVerdictThreshold: 'confidenceVerdictThreshold',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| condition | IResolvable | Condition | The condition threshold settings for suppression validation. |
conditionThreshold
Type:
IResolvable | Condition
The condition threshold settings for suppression validation.

.NET
Go
Java
Python
TypeScript