Describe the feature
CfnConfigurationSet supported vdmOptions, but ConfigurationSet does not support vdmOptions.
https://docs.aws.amazon.com/ja_jp/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html#cfn-ses-configurationset-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
CDK version used
2.139.1
Environment details (OS name and version, etc.)
MacOS
Describe the feature
CfnConfigurationSetsupportedvdmOptions, butConfigurationSetdoes not support vdmOptions.https://docs.aws.amazon.com/ja_jp/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html#cfn-ses-configurationset-vdmoptions
Use Case
It's useful when you want to setting vdmOptions to the configuration set.
Proposed Solution
Add vdmOptions to
ConfigurationSet.Other Information
No response
Acknowledgements
CDK version used
2.139.1
Environment details (OS name and version, etc.)
MacOS