Show / Hide Table of Contents

Enum SuppressionReasons

Reasons for which recipient email addresses should be automatically added to your account's suppression list.

Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum SuppressionReasons
Syntax (vb)
Public Enum SuppressionReasons
Remarks

ExampleMetadata: infused

Examples
// Only bounces will be suppressed.
            // Only bounces will be suppressed.
            new ConfigurationSet(this, "ConfigurationSet", new ConfigurationSetProps {
                SuppressionReasons = SuppressionReasons.BOUNCES_ONLY
            });

            // Only complaints will be suppressed.
            // Only complaints will be suppressed.
            new ConfigurationSet(this, "ConfigurationSet", new ConfigurationSetProps {
                SuppressionReasons = SuppressionReasons.COMPLAINTS_ONLY
            });

            // Both bounces and complaints will be suppressed.
            // Both bounces and complaints will be suppressed.
            new ConfigurationSet(this, "ConfigurationSet", new ConfigurationSetProps {
                SuppressionReasons = SuppressionReasons.BOUNCES_AND_COMPLAINTS
            });

Synopsis

Fields

BOUNCES_AND_COMPLAINTS

Bounces and complaints.

BOUNCES_ONLY

Bounces only.

COMPLAINTS_ONLY

Complaints only.

Fields

Name Description
BOUNCES_AND_COMPLAINTS

Bounces and complaints.

BOUNCES_ONLY

Bounces only.

COMPLAINTS_ONLY

Complaints only.

Back to top Generated by DocFX