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

.NET
Go
Java
Python
TypeScript