Interface IConfigurationSetEventDestinationOptions
Options for a configuration set event destination.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IConfigurationSetEventDestinationOptions
Syntax (vb)
Public Interface IConfigurationSetEventDestinationOptions
Remarks
ExampleMetadata: infused
Examples
ConfigurationSet myConfigurationSet;
Topic myTopic;
myConfigurationSet.AddEventDestination("ToSns", new ConfigurationSetEventDestinationOptions {
Destination = EventDestination.SnsTopic(myTopic)
});
Synopsis
Properties
ConfigurationSetEventDestinationName | A name for the configuration set event destination. |
Destination | The event destination. |
Enabled | Whether Amazon SES publishes events to this destination. |
Events | The type of email sending events to publish to the event destination. |
Properties
ConfigurationSetEventDestinationName
A name for the configuration set event destination.
virtual string ConfigurationSetEventDestinationName { get; }
Property Value
System.String
Remarks
Default: - a CloudFormation generated name
Destination
Enabled
Whether Amazon SES publishes events to this destination.
virtual Nullable<bool> Enabled { get; }
Property Value
System.Nullable<System.Boolean>
Remarks
Default: true
Events
The type of email sending events to publish to the event destination.
virtual EmailSendingEvent[] Events { get; }
Property Value
Remarks
Default: - send all event types