Show / Hide Table of Contents

Interface IVdmOptions

Properties for the Virtual Deliverability Manager (VDM) options that apply to the configuration set.

Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IVdmOptions
Syntax (vb)
Public Interface IVdmOptions
Remarks

ExampleMetadata: infused

Examples
new ConfigurationSet(this, "ConfigurationSetWithVdmOptions", new ConfigurationSetProps {
                VdmOptions = new VdmOptions {
                    EngagementMetrics = true,
                    OptimizedSharedDelivery = true
                }
            });

Synopsis

Properties

EngagementMetrics

If true, engagement metrics are enabled for the configuration set.

OptimizedSharedDelivery

If true, optimized shared delivery is enabled for the configuration set.

Properties

EngagementMetrics

If true, engagement metrics are enabled for the configuration set.

bool? EngagementMetrics { get; }
Property Value

bool?

Remarks

Default: - Engagement metrics not configured at the configuration set level. In this case, use account level settings.

OptimizedSharedDelivery

If true, optimized shared delivery is enabled for the configuration set.

bool? OptimizedSharedDelivery { get; }
Property Value

bool?

Remarks

Default: - Optimized shared delivery not configured at the configuration set level. In this case, use account level settings.

Back to top Generated by DocFX