interface SuppressionOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnConfigurationSetPropsMixin.SuppressionOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnConfigurationSetPropsMixin_SuppressionOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnConfigurationSetPropsMixin.SuppressionOptionsProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnConfigurationSetPropsMixin.SuppressionOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnConfigurationSetPropsMixin » SuppressionOptionsProperty |
An object that contains information about the suppression list preferences for your account.
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 suppressionOptionsProperty: ses_mixins.CfnConfigurationSetPropsMixin.SuppressionOptionsProperty = {
suppressedReasons: ['suppressedReasons'],
};
Properties
| Name | Type | Description |
|---|---|---|
| suppressed | string[] | A list that contains the reasons that email addresses are automatically added to the suppression list for your account. |
suppressedReasons?
Type:
string[]
(optional)
A list that contains the reasons that email addresses are automatically added to the suppression list for your account.
This list can contain any or all of the following:
COMPLAINT– Amazon SES adds an email address to the suppression list for your account when a message sent to that address results in a complaint.BOUNCE– Amazon SES adds an email address to the suppression list for your account when a message sent to that address results in a hard bounce.

.NET
Go
Java
Python
TypeScript