Interface IConfigurationSetEventDestinationProps
Properties for a configuration set event destination.
Inherited Members
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IConfigurationSetEventDestinationProps : IConfigurationSetEventDestinationOptions
Syntax (vb)
Public Interface IConfigurationSetEventDestinationProps
Inherits IConfigurationSetEventDestinationOptions
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SES;
ConfigurationSet configurationSet;
EventDestination eventDestination;
var configurationSetEventDestinationProps = new ConfigurationSetEventDestinationProps {
ConfigurationSet = configurationSet,
Destination = eventDestination,
// the properties below are optional
ConfigurationSetEventDestinationName = "configurationSetEventDestinationName",
Enabled = false,
Events = new [] { EmailSendingEvent.SEND }
};
Synopsis
Properties
ConfigurationSet | The configuration set that contains the event destination. |
Properties
ConfigurationSet
The configuration set that contains the event destination.
IConfigurationSet ConfigurationSet { get; }
Property Value