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