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.
virtual Nullable<bool> EngagementMetrics { get; }
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.
virtual Nullable<bool> OptimizedSharedDelivery { get; }
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.