CfnVdmAttributesProps
- class aws_cdk.aws_ses.CfnVdmAttributesProps(*, dashboard_attributes=None, guardian_attributes=None)
Bases:
object
Properties for defining a
CfnVdmAttributes
.- Parameters:
dashboard_attributes (
Union
[IResolvable
,DashboardAttributesProperty
,Dict
[str
,Any
],None
]) – Specifies additional settings for your VDM configuration as applicable to the Dashboard.guardian_attributes (
Union
[IResolvable
,GuardianAttributesProperty
,Dict
[str
,Any
],None
]) – Specifies additional settings for your VDM configuration as applicable to the Guardian.
- Link:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-vdmattributes.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_ses as ses cfn_vdm_attributes_props = ses.CfnVdmAttributesProps( dashboard_attributes=ses.CfnVdmAttributes.DashboardAttributesProperty( engagement_metrics="engagementMetrics" ), guardian_attributes=ses.CfnVdmAttributes.GuardianAttributesProperty( optimized_shared_delivery="optimizedSharedDelivery" ) )
Attributes
- dashboard_attributes
Specifies additional settings for your VDM configuration as applicable to the Dashboard.
- guardian_attributes
Specifies additional settings for your VDM configuration as applicable to the Guardian.