-
Notifications
You must be signed in to change notification settings - Fork 4.5k
(ses): enable setting vdmOptions in ConfigurationSet #30041
Copy link
Copy link
Closed
Labels
@aws-cdk/aws-sesRelated to Amazon Simple Email ServiceRelated to Amazon Simple Email Serviceeffort/smallSmall work item – less than a day of effortSmall work item – less than a day of effortfeature-requestA feature should be added or improved.A feature should be added or improved.p3
Description
Describe the feature
CfnConfigurationSet supported vdmOptions, but ConfigurationSet does not support vdmOptions.
Use Case
It's useful when you want to setting vdmOptions to the configuration set.
Proposed Solution
Add vdmOptions to ConfigurationSet.
new ConfigurationSet(stack, 'ConfigurationSet', {
customTrackingRedirectDomain: 'track.cdk.dev',
suppressionReasons: SuppressionReasons.COMPLAINTS_ONLY,
tlsPolicy: ConfigurationSetTlsPolicy.REQUIRE,
dedicatedIpPool: new DedicatedIpPool(stack, 'Pool'),
vdmOptions: { // Add
engagementMetrics: true, // Add
optimizedSharedDelivery: true, // Add
}
});Other Information
No response
Acknowledgements
- I may be able to implement this feature request
- This feature might incur a breaking change
CDK version used
2.139.1
Environment details (OS name and version, etc.)
MacOS
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
@aws-cdk/aws-sesRelated to Amazon Simple Email ServiceRelated to Amazon Simple Email Serviceeffort/smallSmall work item – less than a day of effortSmall work item – less than a day of effortfeature-requestA feature should be added or improved.A feature should be added or improved.p3