Interface CfnConfigurationSet.VdmOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigurationSet.VdmOptionsProperty.Jsii$Proxy
Enclosing class:
CfnConfigurationSet

@Stability(Stable) public static interface CfnConfigurationSet.VdmOptionsProperty extends software.amazon.jsii.JsiiSerializable
The Virtual Deliverability Manager (VDM) options that apply to a configuration set.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ses.*;
 VdmOptionsProperty vdmOptionsProperty = VdmOptionsProperty.builder()
         .dashboardOptions(DashboardOptionsProperty.builder()
                 .engagementMetrics("engagementMetrics")
                 .build())
         .guardianOptions(GuardianOptionsProperty.builder()
                 .optimizedSharedDelivery("optimizedSharedDelivery")
                 .build())
         .build();