interface VdmOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnConfigurationSet.VdmOptionsProperty |
Java | software.amazon.awscdk.services.ses.CfnConfigurationSet.VdmOptionsProperty |
Python | aws_cdk.aws_ses.CfnConfigurationSet.VdmOptionsProperty |
TypeScript | @aws-cdk/aws-ses » CfnConfigurationSet » VdmOptionsProperty |
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 * as ses from '@aws-cdk/aws-ses';
const vdmOptionsProperty: ses.CfnConfigurationSet.VdmOptionsProperty = {
dashboardOptions: {
engagementMetrics: 'engagementMetrics',
},
guardianOptions: {
optimizedSharedDelivery: 'optimizedSharedDelivery',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| dashboard | IResolvable | Dashboard | Settings for your VDM configuration as applicable to the Dashboard. |
| guardian | IResolvable | Guardian | Settings for your VDM configuration as applicable to the Guardian. |
dashboardOptions?
Type:
IResolvable | Dashboard
(optional)
Settings for your VDM configuration as applicable to the Dashboard.
guardianOptions?
Type:
IResolvable | Guardian
(optional)
Settings for your VDM configuration as applicable to the Guardian.

.NET
Java
Python
TypeScript