-
Notifications
You must be signed in to change notification settings - Fork 17
/
CfnVdmAttributesProps.go
32 lines (29 loc) · 1.4 KB
/
CfnVdmAttributesProps.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package awsses
// 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 "github.com/aws/aws-cdk-go/awscdk"
//
// cfnVdmAttributesProps := &CfnVdmAttributesProps{
// DashboardAttributes: &DashboardAttributesProperty{
// EngagementMetrics: jsii.String("engagementMetrics"),
// },
// GuardianAttributes: &GuardianAttributesProperty{
// OptimizedSharedDelivery: jsii.String("optimizedSharedDelivery"),
// },
// }
//
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-vdmattributes.html
//
type CfnVdmAttributesProps struct {
// Specifies additional settings for your VDM configuration as applicable to the Dashboard.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-vdmattributes.html#cfn-ses-vdmattributes-dashboardattributes
//
DashboardAttributes interface{} `field:"optional" json:"dashboardAttributes" yaml:"dashboardAttributes"`
// Specifies additional settings for your VDM configuration as applicable to the Guardian.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-vdmattributes.html#cfn-ses-vdmattributes-guardianattributes
//
GuardianAttributes interface{} `field:"optional" json:"guardianAttributes" yaml:"guardianAttributes"`
}