Class VdmOptions
Properties for the Virtual Deliverability Manager (VDM) options that apply to the configuration set.
Inheritance
System.Object
VdmOptions
Implements
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class VdmOptions : Object, IVdmOptions
Syntax (vb)
Public Class VdmOptions
Inherits Object
Implements IVdmOptions
Remarks
ExampleMetadata: infused
Examples
new ConfigurationSet(this, "ConfigurationSetWithVdmOptions", new ConfigurationSetProps {
VdmOptions = new VdmOptions {
EngagementMetrics = true,
OptimizedSharedDelivery = true
}
});
Synopsis
Constructors
VdmOptions() |
Properties
EngagementMetrics | If true, engagement metrics are enabled for the configuration set. |
OptimizedSharedDelivery | If true, optimized shared delivery is enabled for the configuration set. |
Constructors
VdmOptions()
public VdmOptions()
Properties
EngagementMetrics
If true, engagement metrics are enabled for the configuration set.
public Nullable<bool> EngagementMetrics { get; set; }
Property Value
System.Nullable<System.Boolean>
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.
public Nullable<bool> OptimizedSharedDelivery { get; set; }
Property Value
System.Nullable<System.Boolean>
Remarks
Default: - Optimized shared delivery not configured at the configuration set level. In this case, use account level settings.