interface CfnVdmAttributesProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnVdmAttributesProps |
Java | software.amazon.awscdk.services.ses.CfnVdmAttributesProps |
Python | aws_cdk.aws_ses.CfnVdmAttributesProps |
TypeScript | @aws-cdk/aws-ses » CfnVdmAttributesProps |
Properties for defining a CfnVdmAttributes.
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 cfnVdmAttributesProps: ses.CfnVdmAttributesProps = {
dashboardAttributes: {
engagementMetrics: 'engagementMetrics',
},
guardianAttributes: {
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. |
dashboardAttributes?
Type:
IResolvable | Dashboard
(optional)
Specifies additional settings for your VDM configuration as applicable to the Dashboard.
guardianAttributes?
Type:
IResolvable | Guardian
(optional)
Specifies additional settings for your VDM configuration as applicable to the Guardian.

.NET
Java
Python
TypeScript