package awsses // Used to enable or disable email sending for messages that use this configuration set in the current AWS Region. // // 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" // // sendingOptionsProperty := &SendingOptionsProperty{ // SendingEnabled: jsii.Boolean(false), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-sendingoptions.html // type CfnConfigurationSet_SendingOptionsProperty struct { // If `true` , email sending is enabled for the configuration set. // // If `false` , email sending is disabled for the configuration set. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-sendingoptions.html#cfn-ses-configurationset-sendingoptions-sendingenabled // SendingEnabled interface{} `field:"optional" json:"sendingEnabled" yaml:"sendingEnabled"` }